Mirai's Miscellaneous Misadventures

M41 / include / mimimi / cameras.h

1// copyright 2023 zamfofex
2// license: AGPLv3 or later
3
4#ifndef MIMIMI_CAMERAS_H
5#define MIMIMI_CAMERAS_H
6
7struct mimimi_behavior;
8struct mimimi_position;
9struct mimimi_allocator;
10
11struct mimimi_behavior *mimimi_camera(struct mimimi_position *camera, struct mimimi_position *position, int x, int y, struct mimimi_allocator *allocator);
12
13#endif