From 120afaec5290bd3b9109503d04b6b8d284114f30 Mon Sep 17 00:00:00 2001 From: TravisBot <> Date: Tue, 13 Feb 2018 19:22:49 +0000 Subject: [Travis] Rebuilding documentation --- system_8h_source.html | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) (limited to 'system_8h_source.html') diff --git a/system_8h_source.html b/system_8h_source.html index 46fb25a8..f72bb768 100644 --- a/system_8h_source.html +++ b/system_8h_source.html @@ -4,7 +4,7 @@ -YAGE: yage/engine/system.h Source File +YAGE: yage/entity/system.h Source File @@ -84,7 +84,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
@@ -107,21 +107,24 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
31  virtual void init() = 0;
32 
38  virtual void update(double dt) = 0;
-
39 };
-
40 
-
48 inline System::~System() {}
-
49 
-
50 } // namespace yage
-
51 
-
52 #endif
+
39 
+
43  virtual void destroy() = 0;
+
44 };
+
45 
+
53 inline System::~System() {}
+
54 
+
55 } // namespace yage
+
56 
+
57 #endif
System interface for the different systems in the engine.
Definition: system.h:18
virtual void init()=0
Initializes the system.
-
virtual ~System()=0
Virtual destructor to destroy all the objects that implement this properly.
Definition: system.h:48
+
virtual ~System()=0
Virtual destructor to destroy all the objects that implement this properly.
Definition: system.h:53
+
virtual void destroy()=0
Destroy the system and the components that are contained in it.
virtual void update(double dt)=0
Updates the system at each interval using the time step.
-- cgit