Added Entityx to project

This commit is contained in:
Julian Nießner
2018-05-10 23:36:35 +02:00
parent 50fe9dbe02
commit 9083487ac9
58 changed files with 15308 additions and 1 deletions

23
external/entityx-1.1.2/cxx11/demo.cpp vendored Normal file
View File

@@ -0,0 +1,23 @@
#include <iostream>
int main()
{
std::cout << "Testing\n";
std::cout << "Has static_assert: " <<
#ifdef HAS_CXX11_STATIC_ASSERT
"yes :)"
#else
"no"
#endif
<< "\n";
std::cout << "Has variadic templates: " <<
#ifdef HAS_CXX11_VARIADIC_TEMPLATES
"yes :)"
#else
"no"
#endif
<< "\n";
return 0;
}