From: slack Date: Fri, 17 Oct 2008 00:21:43 +0000 (+0200) Subject: WIP: entity class X-Git-Url: http://slack.codemaniacs.com/git/?a=commitdiff_plain;h=a98b2b22b0dc780532327deb8d6853ada38574f3;p=laz0r.git WIP: entity class --- diff --git a/entity.h b/entity.h new file mode 100644 index 0000000..71fa147 --- /dev/null +++ b/entity.h @@ -0,0 +1,19 @@ +#if !defined(ENTITY_H) +#define ENTITY_H + +#include "texture.h" +#include "model.h" + +class Entity +{ + Model *model; + Texture *texture; + ScePspFMatrix4 initial_transform; + ScePspFVector3 position; + ScePspFVector3 velocity; + +}; + +#endif + +