blob: 1cfbc45863ef0e10366743a9308dbe7ef16d5e75 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef P_SQUARE
#define P_SQUARE
#include "PixelCallback.h"
typedef struct Square {
u32 width;
u32 height;
color color;
} Square;
PixelCallback* Square_setup(Square obj);
#endif /* P_SQUARE */
|