No description
Stephen Seo
d12af4d527
EC/Manager and EC/Bitset can now handle types that are not known (Components or Tags not in the given Components or Tags when created). Manager::getEntityData now returns a pointer instead of a reference. Functions passed to Manager::forMatchingFunction (and other similar fns) should now accept Component fields as pointer types, not reference types. |
||
---|---|---|
src | ||
.gitignore | ||
AttributionNotice | ||
Doxyfile | ||
LICENSE | ||
README.md |
Compiling
Create a build directory.
mkdir build
Generate makefile with CMake.
cd build
cmake -DCMAKE_INSTALL_PREFIX=./install -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=True ../src
Build the project.
make
Optionally install the project to where CMAKE_INSTALL_PREFIX was set.
make install