blob: 576c46c3112b1e900ec7e408b0bd57224188279b (
plain) (
blame)
1
2
3
4
5
6
|
#include "ModelComponent.h"
class cMobModel : public cModelComponent {
int m_MobType;
cMobModel(cEntity * a_Entity, int a_MobType): cModelComponent(a_Entity), m_MobType(a_MobType){}
}
|