summary refs log tree commit diff stats
path: root/src/entity_manager.cpp
Commit message (Collapse)AuthorAgeFilesLines
* EntityManager const-correctnessKelly Rauchenberger2018-04-251-2/+2
|
* Changed EntityManager to dense vectorKelly Rauchenberger2018-02-071-5/+6
| | | | | | | | This should improve speed, because entity lookup will be O(1) instead of O(log n). Deletion is also O(1). Insert stays at potentially O(n), but still should be overall faster than the previous method. Also replaced some asserts with exceptions. Also made Component polymorphic so that deletion actually works properly.
* Whitespace changesKelly Rauchenberger2018-02-051-4/+4
|
* Now displaying player characterKelly Rauchenberger2015-06-181-0/+38