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

28 lines
501 B
C++

#ifndef _ITEMGROUND_H
#define _ITEMGROUND_H
#include <string>
#include <Class.h>
#include <CustomTypes.h>
namespace nonut
{
class ItemGround : public Class
{
public:
ItemGround(SQObject object);
Function<nonut::Position3d> getPosition;
Function<nonut::Position3d> getRotation;
// Properties
Property<Int> id;
Property<String> instance;
Property<Int> amount;
Property<String> world;
Property<Int> virtualWorld;
};
}
#endif