mirror of
https://github.com/GTAmodding/re3.git
synced 2025-02-14 18:53:55 +00:00
14 lines
161 B
C++
14 lines
161 B
C++
#pragma once
|
|
|
|
#include "Placeable.h"
|
|
|
|
// unused
|
|
|
|
class CInstance : public CPlaceable
|
|
{
|
|
public:
|
|
int m_modelIndex;
|
|
public:
|
|
~CInstance() { }
|
|
void Shutdown();
|
|
};
|