Add object module
This commit is contained in:
parent
9c01ba8811
commit
8d51a521bb
3 changed files with 32 additions and 0 deletions
15
src/object.c
Normal file
15
src/object.c
Normal file
|
@ -0,0 +1,15 @@
|
|||
/* object.c
|
||||
*
|
||||
* Definition of scene Objects.
|
||||
*
|
||||
* Eryn Wells <eryn@erynwells.me>
|
||||
*/
|
||||
|
||||
|
||||
#include "object.h"
|
||||
|
||||
|
||||
struct _Object
|
||||
{
|
||||
int type;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue