Add object module

This commit is contained in:
Eryn Wells 2013-09-07 16:09:19 -07:00
parent 9c01ba8811
commit 8d51a521bb
3 changed files with 32 additions and 0 deletions

15
src/object.c Normal file
View file

@ -0,0 +1,15 @@
/* object.c
*
* Definition of scene Objects.
*
* Eryn Wells <eryn@erynwells.me>
*/
#include "object.h"
struct _Object
{
int type;
};