#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__