mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 07:07:42 +00:00
Initial CCharLayoutInfo implementation
This commit is contained in:
21
Runtime/Character/CSegId.hpp
Normal file
21
Runtime/Character/CSegId.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef __PSHAG_CSEGID_HPP__
|
||||
#define __PSHAG_CSEGID_HPP__
|
||||
|
||||
#include "RetroTypes.hpp"
|
||||
#include "IOStreams.hpp"
|
||||
#include "zeus/CVector3f.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
class CSegId
|
||||
{
|
||||
u8 x0_segId = 0xff;
|
||||
public:
|
||||
CSegId() = default;
|
||||
CSegId(CInputStream& in) : x0_segId(in.readUint32Big()) {}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __PSHAG_CSEGID_HPP__
|
||||
Reference in New Issue
Block a user