projects
/
laz0r.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6098914
)
WIP: entity class
author
slack
<slack@codemaniacs.com>
Fri, 17 Oct 2008 00:21:43 +0000
(
02:21
+0200)
committer
slack
<slack@codemaniacs.com>
Fri, 17 Oct 2008 00:21:43 +0000
(
02:21
+0200)
entity.h
[new file with mode: 0644]
patch
|
blob
diff --git a/entity.h
b/entity.h
new file mode 100644
(file)
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
+
+