2019-07-08 02:46:42 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Placeable.h"
|
|
|
|
|
|
|
|
// unused
|
|
|
|
|
2020-01-20 15:41:41 -05:00
|
|
|
class CInstance : public CPlaceable
|
2019-07-08 02:46:42 -04:00
|
|
|
{
|
2020-01-20 15:41:41 -05:00
|
|
|
public:
|
|
|
|
int m_modelIndex;
|
2019-07-08 02:46:42 -04:00
|
|
|
public:
|
2019-07-31 11:54:18 -04:00
|
|
|
~CInstance() = default;
|
2020-01-23 13:08:42 -05:00
|
|
|
void Shutdown();
|
2019-07-08 02:46:42 -04:00
|
|
|
};
|