metaforce/Runtime/World/CScannableParameters.hpp

20 lines
336 B
C++
Raw Normal View History

2016-04-18 01:58:13 +00:00
#ifndef __URDE_CSCANNABLEPARAMETERS_HPP__
#define __URDE_CSCANNABLEPARAMETERS_HPP__
#include "RetroTypes.hpp"
namespace urde
{
class CScannableParameters
{
ResId x0_scanId = -1;
2016-04-18 01:58:13 +00:00
public:
2016-04-18 05:33:23 +00:00
CScannableParameters() = default;
CScannableParameters(ResId id) : x0_scanId(id) {}
2016-04-18 01:58:13 +00:00
};
}
#endif // __URDE_CSCANNABLEPARAMETERS_HPP__