| 6 | #include "Entity.h" |
| 7 | |
| 8 | Entity::Entity(uint32_t parent_trackblock_id, uint32_t entity_id, NFSVer nfs_version, EntityType entity_type, EngineModel gl_mesh) { |
| 9 | tag = nfs_version; |
| 10 | type = entity_type; |
| 11 | glMesh = gl_mesh; |
| 12 | parentTrackblockID = parent_trackblock_id; |
| 13 | entityID = entity_id; |
| 14 | } |
| 15 | |
| 16 | void Entity::genPhysicsMesh(){ |
| 17 | if(type == LIGHT){ |
nothing calls this directly
no outgoing calls
no test coverage detected