ソースを参照

Add missing OS headers in Crown.h

Daniele Bartolini 12 年 前
コミット
6f87c7fcc6
1 ファイル変更13 行追加11 行削除
  1. 13 11
      engine/Crown.h

+ 13 - 11
engine/Crown.h

@@ -93,11 +93,6 @@ OTHER DEALINGS IN THE SOFTWARE.
 #include "JSON.h"
 #include "JSONParser.h"
 
-// Core/Threads
-#include "Thread.h"
-#include "Mutex.h"
-#include "Cond.h"
-
 // Core/Settings
 #include "IntSetting.h"
 #include "FloatSetting.h"
@@ -127,6 +122,19 @@ OTHER DEALINGS IN THE SOFTWARE.
 #include "Mouse.h"
 #include "Touch.h"
 
+// Engine/Lua
+#include "LuaStack.h"
+#include "LuaEnvironment.h"
+
+// Engine/Os
+#include "Thread.h"
+#include "Mutex.h"
+#include "Cond.h"
+#include "OsFile.h"
+#include "OsWindow.h"
+#include "TCPSocket.h"
+#include "UDPSocket.h"
+
 // Engine/Renderers
 #include "VertexBuffer.h"
 #include "IndexBuffer.h"
@@ -136,9 +144,3 @@ OTHER DEALINGS IN THE SOFTWARE.
 #include "DebugRenderer.h"
 #include "PixelFormat.h"
 #include "VertexFormat.h"
-
-// Lua
-#include "LuaStack.h"
-#include "LuaEnvironment.h"
-
-