From 120afaec5290bd3b9109503d04b6b8d284114f30 Mon Sep 17 00:00:00 2001 From: TravisBot <> Date: Tue, 13 Feb 2018 19:22:49 +0000 Subject: [Travis] Rebuilding documentation --- entity_8h_source.html | 44 ++++++++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 20 deletions(-) (limited to 'entity_8h_source.html') diff --git a/entity_8h_source.html b/entity_8h_source.html index 8358cba0..5b32c443 100644 --- a/entity_8h_source.html +++ b/entity_8h_source.html @@ -4,7 +4,7 @@ -YAGE: yage/engine/entity.h Source File +YAGE: yage/entity/entity.h Source File @@ -84,7 +84,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
@@ -101,29 +101,33 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
14 namespace yage
15 {
16 
-
17 class Space;
+
17 typedef unsigned EntityHandle;
18 
-
27 class Entity
-
28 {
-
29 public:
-
35  Entity(unsigned handle);
-
36 
-
42  unsigned getHandle() const;
-
43 
-
44 private:
-
48  unsigned handle_;
-
49 };
-
50 
-
51 } // namespace yage
+
19 class Space;
+
20 
+
29 class Entity
+
30 {
+
31 public:
+
37  Entity(EntityHandle handle);
+
38 
+
44  EntityHandle getHandle() const;
+
45 
+
46 private:
+
50  EntityHandle handle_;
+
51 };
52 
-
53 #endif
-
Entity convenience class.
Definition: entity.h:27
-
Entity(unsigned handle)
Creates an instance of an Entity with a handle that is associated to it.
Definition: entity.cpp:16
-
unsigned getHandle() const
Handle getter, as the user will only interact with the id itself.
Definition: entity.cpp:18
+
53 } // namespace yage
+
54 
+
55 #endif
+
unsigned EntityHandle
Definition: entity.h:17
+
Entity convenience class.
Definition: entity.h:29
+
Entity(EntityHandle handle)
Creates an instance of an Entity with a handle that is associated to it.
Definition: entity.cpp:16
+
EntityHandle getHandle() const
Handle getter, as the user will only interact with the id itself.
Definition: entity.cpp:18
+
Space that keeps track of all the entities, componenets and runs the systems on the data to update th...
Definition: space.h:28
-- cgit