Files
PyG2O/source/NoNut/include/Instance.h
2025-01-25 00:02:52 +03:00

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