mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-27 11:34:14 +01: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();
|
|
};
|