blob: c3cb64cf933d76ed5dbdab33820a4cd498a4b827 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef CAMERA_PRIVATE_H
#define CAMERA_PRIVATE_H
#include <camera.h>
#ifdef __cplusplus
extern "C"
{
#endif
enum
{
CAMERA_CURSOR_WIDTH = 20,
CAMERA_CURSOR_HEIGHT = 20
};
void camera_update_pos(struct camera *cam);
void camera_update_pad(struct camera *cam, const struct pad *p);
void camera_update_mouse(struct camera *cam, const struct mouse *m);
void camera_update_touch(struct camera *cam, const struct mouse *m);
#ifdef __cplusplus
}
#endif
#endif /* CAMERA_PRIVATE_H */
|