minecraft-pi-reborn/symbols/src/entity/Entity.def

29 lines
893 B
Modula-2
Raw Normal View History

2024-01-23 03:59:38 +00:00
virtual-method void remove() = 0x10;
virtual-method void tick() = 0x34;
2024-01-06 11:30:23 +00:00
virtual-method bool hurt(Entity *attacker, int damage) = 0xa4;
2024-01-07 07:59:04 +00:00
virtual-method int getEntityTypeId() = 0xdc;
2024-01-23 03:59:38 +00:00
method void moveTo(float x, float y, float z, float yaw, float pitch) = 0x7a834;
2024-01-06 11:30:23 +00:00
property float x = 0x4;
property float y = 0x8;
property float z = 0xc;
property int id = 0x1c;
2024-01-23 03:59:38 +00:00
property Level *level = 0x24;
2024-01-06 11:30:23 +00:00
property float old_x = 0x28;
property float old_y = 0x2c;
property float old_z = 0x30;
2024-01-22 06:39:43 +00:00
property float vel_x = 0x34;
property float vel_y = 0x38;
property float vel_z = 0x3c;
property float yaw = 0x40;
property float pitch = 0x44;
2024-01-06 11:30:23 +00:00
property float old_yaw = 0x48;
property float old_pitch = 0x4c;
property float head_height = 0x68;
2024-01-22 08:13:54 +00:00
property float hitbox_width = 0x6c;
property float hitbox_height = 0x70;
2024-01-23 03:59:38 +00:00
property int renderer_id = 0xa8;
property bool on_ground = 0xb2;
property bool freeze_physics = 0xb9;