summaryrefslogtreecommitdiff
path: root/FrameRender/P_Square.h
blob: bef7b21244e0089f63a37986928a6508a5c94bdf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef P_SQUARE
#define P_SQUARE

#include "PixelCallback.h"

typedef struct Square {
	u32 size;
	color color;
} Square;

PixelCallback* Square_setup(Square obj);

#endif /* P_SQUARE */