mirror of https://github.com/AxioDL/metaforce.git
20 lines
337 B
C++
20 lines
337 B
C++
#ifndef __URDE_CSCANNABLEPARAMETERS_HPP__
|
|
#define __URDE_CSCANNABLEPARAMETERS_HPP__
|
|
|
|
#include "RetroTypes.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
class CScannableParameters
|
|
{
|
|
CAssetId x0_scanId;
|
|
|
|
public:
|
|
CScannableParameters() = default;
|
|
CScannableParameters(CAssetId id) : x0_scanId(id) {}
|
|
};
|
|
}
|
|
|
|
#endif // __URDE_CSCANNABLEPARAMETERS_HPP__
|