Files
PyG2O/src/classes/sq/ItemGround.h
AURUMVORXX cee3341a51 feat: Added ItemGround class
+ Added onPlayerTakeItem and onPlayerDropItem events
2024-11-06 02:09:04 +03:00

29 lines
548 B
C++

#ifndef _ITEMGROUND_H
#define _ITEMGROUND_H
#include <string>
#include <NoNut/core/Class.h>
#include <NoNut/core/CustomTypes.h>
namespace nonut
{
class ItemGround : public Class
{
public:
ItemGround();
explicit 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