#ifndef _ITEMSGROUND_H_ #define _ITEMSGROUND_H_ #include #include #include #include "ItemGround.h" #include namespace py = pybind11; namespace nonut { class ItemsGround : public StaticClass { public: static ItemsGround* get(); Function getById; Function create; Function destroy; private: static inline ItemsGround* inst = nullptr; ItemsGround(); }; } #endif