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