mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-28 18:51:16 +00:00
Update legopointofviewcontroller.h
This commit is contained in:
parent
d3cad8712a
commit
038d93fff4
@ -46,32 +46,35 @@ class LegoPointOfViewController : public LegoMouseController {
|
||||
void LeftDrag(int p_x, int p_y);
|
||||
|
||||
// FUNCTION: LEGO1 0x10011e40
|
||||
virtual void LeftUp(int p_x, int p_y)
|
||||
virtual void LeftUp(int p_x, int p_y) override
|
||||
{
|
||||
LegoMouseController::LeftUp(p_x, p_y);
|
||||
AffectPointOfView();
|
||||
} override; // vtable+0x14
|
||||
}
|
||||
// vtable+0x14
|
||||
|
||||
// FUNCTION: LEGO1 0x10011e60
|
||||
virtual void RightDown(int p_x, int p_y)
|
||||
virtual void RightDown(int p_x, int p_y) override
|
||||
{
|
||||
LegoMouseController::RightDown(p_x, p_y);
|
||||
AffectPointOfView();
|
||||
} override; // vtable+0x20
|
||||
}
|
||||
// vtable+0x20
|
||||
|
||||
// FUNCTION: LEGO1 0x10011e80
|
||||
virtual void RightDrag(int p_x, int p_y)
|
||||
virtual void RightDrag(int p_x, int p_y) override
|
||||
{
|
||||
LegoMouseController::RightDrag(p_x, p_y);
|
||||
AffectPointOfView();
|
||||
} override; // vtable+0x24
|
||||
}
|
||||
// vtable+0x24
|
||||
|
||||
// FUNCTION: LEGO1 0x10011ea0
|
||||
virtual void RightUp(int p_x, int p_y)
|
||||
virtual void RightUp(int p_x, int p_y) override
|
||||
{
|
||||
LegoMouseController::RightUp(p_x, p_y);
|
||||
AffectPointOfView();
|
||||
} override; // vtable+0x28
|
||||
} // vtable+0x28
|
||||
virtual void SetEntity(LegoEntity* p_entity); // vtable+0x2c
|
||||
LegoEntity* GetEntity() { return m_entity; }
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user