metaforce/Runtime/Collision/CMaterialList.hpp

20 lines
284 B
C++
Raw Normal View History

2016-04-19 00:17:49 +00:00
#ifndef __URDE_CMATERIALLIST_HPP__
#define __URDE_CMATERIALLIST_HPP__
#include "RetroTypes.hpp"
namespace urde
{
class CMaterialList
{
public:
2016-04-19 21:25:26 +00:00
u64 x0_ = 0;
2016-04-19 00:17:49 +00:00
CMaterialList() = default;
CMaterialList(int idx) : x0_(1 << idx) {}
};
}
#endif // __URDE_CMATERIALLIST_HPP__