summaryrefslogtreecommitdiffstats
path: root/source/cSimulator.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/cSimulator.h')
-rw-r--r--source/cSimulator.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/source/cSimulator.h b/source/cSimulator.h
index 4e92ec152..158e74b99 100644
--- a/source/cSimulator.h
+++ b/source/cSimulator.h
@@ -1,20 +1,20 @@
-#pragma once
-
-class Vector3i;
-class cWorld;
-class cSimulator
-{
-public:
- cSimulator( cWorld* a_World );
- ~cSimulator();
-
- virtual void Simulate( float a_Dt ) = 0;
- virtual void WakeUp( int a_X, int a_Y, int a_Z );
-
- virtual bool IsAllowedBlock( char a_BlockID ) = 0;
-
-protected:
- virtual void AddBlock(int a_X, int a_Y, int a_Z) = 0;
-
- cWorld * m_World;
+#pragma once
+
+class Vector3i;
+class cWorld;
+class cSimulator
+{
+public:
+ cSimulator( cWorld* a_World );
+ ~cSimulator();
+
+ virtual void Simulate( float a_Dt ) = 0;
+ virtual void WakeUp( int a_X, int a_Y, int a_Z );
+
+ virtual bool IsAllowedBlock( char a_BlockID ) = 0;
+
+protected:
+ virtual void AddBlock(int a_X, int a_Y, int a_Z) = 0;
+
+ cWorld * m_World;
}; \ No newline at end of file