prog
This commit is contained in:
37
src/rpg/rpgcamera.h
Normal file
37
src/rpg/rpgcamera.h
Normal file
@@ -0,0 +1,37 @@
|
||||
/**
|
||||
* Copyright (c) 2025 Dominic Masters
|
||||
*
|
||||
* This software is released under the MIT License.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include "world/worldunit.h"
|
||||
|
||||
typedef enum {
|
||||
RPG_CAMERA_MODE_FREE,
|
||||
RPG_CAMERA_MODE_FOLLOW_ENTITY,
|
||||
} rpgcameramode_t;
|
||||
|
||||
typedef struct {
|
||||
worldpos_t position[WORLD_DIMENSIONS];
|
||||
rpgcameramode_t mode;
|
||||
|
||||
union {
|
||||
struct {
|
||||
uint8_t followEntityId;
|
||||
} followEntity;
|
||||
};
|
||||
} rpgcamera_t;
|
||||
|
||||
extern rpgcamera_t RPG_CAMERA;
|
||||
|
||||
/**
|
||||
* Initializes the RPG camera.
|
||||
*/
|
||||
void rpgCameraInit(void);
|
||||
|
||||
/**
|
||||
* Updates the RPG camera.
|
||||
*/
|
||||
void rpgCameraUpdate(void);
|
Reference in New Issue
Block a user