1
0
Fork 0
mirror of https://git.sr.ht/~kikoodx/crystal-tower synced 2024-06-05 18:21:26 +02:00
crystal-tower/inc/camera.h
2021-11-10 12:10:04 +01:00

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);