1
0
Fork 0
mirror of https://github.com/halpz/re3.git synced 2026-01-16 23:43:20 +00:00
re3/src/renderer/Instance.h
2021-07-18 00:03:57 +03:00

15 lines
161 B
C++

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