mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-05 15:13:27 +00:00
22 lines
331 B
C++
22 lines
331 B
C++
#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__
|