mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-05 09:15:54 +00:00
15 lines
168 B
C++
15 lines
168 B
C++
#pragma once
|
|
|
|
#include "Placeable.h"
|
|
|
|
// unused
|
|
|
|
class CInstance : public CPlaceable
|
|
{
|
|
public:
|
|
int m_modelIndex;
|
|
public:
|
|
~CInstance() = default;
|
|
void Shutdown();
|
|
};
|