blob: 1a6af4a2ed25525793eb55c02d935c6cb4c3beee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef P_CIRCLE
#define P_CIRCLE
#include "PixelCallback.h"
typedef struct Circle {
u32 radius;
color color;
} Circle;
PixelCallback* Circle_setup(Circle obj);
#endif /* P_CIRCLE */
|