2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-06 21:26:01 +00:00
metaforce/Runtime/Collision/CMaterialList.hpp
2016-04-19 11:25:26 -10:00

20 lines
284 B
C++

#ifndef __URDE_CMATERIALLIST_HPP__
#define __URDE_CMATERIALLIST_HPP__
#include "RetroTypes.hpp"
namespace urde
{
class CMaterialList
{
public:
u64 x0_ = 0;
CMaterialList() = default;
CMaterialList(int idx) : x0_(1 << idx) {}
};
}
#endif // __URDE_CMATERIALLIST_HPP__