mirror of
https://github.com/halpz/re3.git
synced 2025-02-25 02:32:11 +00:00
15 lines
161 B
C++
15 lines
161 B
C++
#pragma once
|
|
|
|
#include "Placeable.h"
|
|
|
|
// unused
|
|
|
|
class CInstance : public CPlaceable
|
|
{
|
|
public:
|
|
int m_modelIndex;
|
|
public:
|
|
~CInstance() { }
|
|
void Shutdown();
|
|
};
|