Explicitly deleted copy and move constructors

This commit is contained in:
Kayne Ruse
2013-06-24 09:13:27 +10:00
parent f049c96df7
commit 42787dcb69
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -68,6 +68,7 @@ public:
void Quit();
ServerApplication(ServerApplication const&) = delete;
ServerApplication(ServerApplication const&&) = delete;
private:
//game loop
void UpdateWorld(double delta);