mirror of
https://github.com/Ragora/T2-CPP.git
synced 2026-01-20 10:34:45 +00:00
16 lines
286 B
C++
16 lines
286 B
C++
#pragma once
|
|
|
|
namespace DX
|
|
{
|
|
class SimObject
|
|
{
|
|
public:
|
|
SimObject(unsigned int obj);
|
|
|
|
void deleteObject(void);
|
|
const char *CallMethod(const char *name, unsigned int argc, ...);
|
|
|
|
const unsigned int &identifier;
|
|
const unsigned int base_pointer_value;
|
|
};
|
|
} // End NameSpace DX
|