crystal-tower/inc/camera.h

12 lines
186 B
C

#pragma once
#include "vec.h"
struct Camera {
struct Vec *follow;
struct VecF pos;
};
void camera_init(struct Vec *follow);
void camera_update(void);
struct Vec camera_offset(void);