1
0
mirror of https://github.com/td512/re3.git synced 2026-03-04 19:13:47 +00:00
Files
td512.re3/src/render/Instance.h
2021-01-21 03:18:15 +01:00

15 lines
161 B
C++

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