2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 12:31:22 +00:00
metaforce/Runtime/World/CScannableParameters.hpp
Lioncash 36d04456dd General: Normalize RuntimeCommonB include paths
Finishes the normalizing of all of includes within the RuntimeCommonB target's headers.
2019-09-23 17:22:37 -04:00

16 lines
292 B
C++

#pragma once
#include "Runtime/RetroTypes.hpp"
namespace urde {
class CScannableParameters {
CAssetId x0_scanId;
public:
CScannableParameters() = default;
CScannableParameters(CAssetId id) : x0_scanId(id) {}
CAssetId GetScanId() const { return x0_scanId; }
};
} // namespace urde