geometry-dash-gba/include/camera.h

15 lines
189 B
C
Raw Permalink Normal View History

2020-08-12 00:13:56 -04:00
#include "types.h"
#ifndef CAMERA_H
#define CAMERA_H
typedef struct CAMERA {
int x;
int y;
} ALIGN(4) CAMERA;
CAMERA createCamera();
void applyCameraShift();
#endif // CAMERA_H