mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 16:34:06 +00:00
Move Read/Write functions to LegoStorage
base class, match Act1State::Serialize
(#1335)
* Move Read/Write function to LegoStorage base class * Proper const use for vector / BETA match * Match `Act1State::Serialize`
This commit is contained in:

committed by
GitHub

parent
77a3dc0795
commit
70b0f76fa1
@@ -87,13 +87,13 @@ public:
|
||||
void SetLoopCount(MxS32 p_loopCount) { m_loopCount = p_loopCount; }
|
||||
|
||||
// FUNCTION: BETA10 0x1003db50
|
||||
Vector3& GetLocation() { return m_location; }
|
||||
const Vector3& GetLocation() { return m_location; }
|
||||
|
||||
// FUNCTION: BETA10 0x1003db80
|
||||
Vector3& GetDirection() { return m_direction; }
|
||||
const Vector3& GetDirection() { return m_direction; }
|
||||
|
||||
// FUNCTION: BETA10 0x1003dbb0
|
||||
Vector3& GetUp() { return m_up; }
|
||||
const Vector3& GetUp() { return m_up; }
|
||||
|
||||
// FUNCTION: BETA10 0x100153b0
|
||||
void SetLocation(const Vector3& p_location) { m_location = p_location; }
|
||||
|
Reference in New Issue
Block a user