Files
PyG2O/source/classes/squirrel/ItemsGround.h
2025-01-25 00:02:52 +03:00

31 lines
553 B
C++

#ifndef _ITEMSGROUND_H_
#define _ITEMSGROUND_H_
#include <string>
#include <StaticClass.h>
#include <CustomTypes.h>
#include "ItemGround.h"
#include <pybind11/embed.h>
namespace py = pybind11;
namespace nonut
{
class ItemsGround : public StaticClass
{
public:
static ItemsGround* get();
Function<ItemGround, Int> getById;
Function<Int, SQObject> create;
Function<void, Int> destroy;
private:
static inline ItemsGround* inst = nullptr;
ItemsGround();
};
}
#endif