mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 02:27:43 +00:00
Additional ScriptLoader imps
This commit is contained in:
21
Runtime/World/CVisorParameters.hpp
Normal file
21
Runtime/World/CVisorParameters.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef __URDE_CVISORPARAMETERS_HPP__
|
||||
#define __URDE_CVISORPARAMETERS_HPP__
|
||||
|
||||
#include "RetroTypes.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
class CVisorParameters
|
||||
{
|
||||
u8 mask : 4;
|
||||
bool b1 : 1;
|
||||
bool b2 : 1;
|
||||
public:
|
||||
CVisorParameters()
|
||||
: mask(0xf), b1(false), b2(false) {}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __URDE_CVISORPARAMETERS_HPP__
|
||||
Reference in New Issue
Block a user