2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 21:11:21 +00:00
metaforce/Runtime/World/CScannableParameters.hpp
2016-04-17 19:33:23 -10:00

20 lines
336 B
C++

#ifndef __URDE_CSCANNABLEPARAMETERS_HPP__
#define __URDE_CSCANNABLEPARAMETERS_HPP__
#include "RetroTypes.hpp"
namespace urde
{
class CScannableParameters
{
ResId x0_scanId = -1;
public:
CScannableParameters() = default;
CScannableParameters(ResId id) : x0_scanId(id) {}
};
}
#endif // __URDE_CSCANNABLEPARAMETERS_HPP__