14 lines
221 B
C++
14 lines
221 B
C++
#ifndef NONUT_CORE_INSTANCE_H
|
|
#define NONUT_CORE_INSTANCE_H
|
|
#include <sqapi.h>
|
|
|
|
namespace nonut
|
|
{
|
|
class Instance
|
|
{
|
|
public:
|
|
[[nodiscard]] virtual SQObject getInstance() const = 0;
|
|
};
|
|
}
|
|
#endif //NONUT_CORE_INSTANCE_H
|