1
0
mirror of https://github.com/td512/re3.git synced 2026-01-18 19:26:44 +00:00
td512.re3/src/core/Instance.h
2020-01-23 20:08:42 +02:00

15 lines
168 B
C++

#pragma once
#include "Placeable.h"
// unused
class CInstance : public CPlaceable
{
public:
int m_modelIndex;
public:
~CInstance() = default;
void Shutdown();
};