2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 05:07:43 +00:00

Symbol correct function/variable names

This commit is contained in:
2016-04-27 21:52:41 -07:00
parent c55db47941
commit 0df9ffd56d
9 changed files with 28 additions and 15 deletions

View File

@@ -16,17 +16,18 @@ protected:
CCharAnimTime x1c_time;
u32 x24_index;
bool x28_;
float x2c_;
float x2c_weight;
u32 x30_;
u32 x34_;
public:
CPOINode(const std::string& name, u16, const CCharAnimTime& time, u32 index, bool, float, u32, u32);
CPOINode(const std::string& name, u16, const CCharAnimTime& time, u32 index, bool, float weight, u32, u32);
CPOINode(CInputStream& in);
virtual ~CPOINode() = default;
const std::string& GetName() const {return x8_name;}
const CCharAnimTime& GetTime() const {return x1c_time;}
u32 GetIndex() const {return x24_index;}
float GetWeight() const { return x2c_weight; }
};
}