mirror of https://github.com/AxioDL/metaforce.git
20 lines
336 B
C++
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__
|