mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 16:08:59 +00:00
14 lines
168 B
C++
14 lines
168 B
C++
#pragma once
|
|
|
|
#include "Placeable.h"
|
|
|
|
// unused
|
|
|
|
class CInstance : public CPlaceable
|
|
{
|
|
public:
|
|
int m_modelIndex;
|
|
public:
|
|
~CInstance() = default;
|
|
void Shutdown();
|
|
};
|