metaforce/Runtime/World/CScannableParameters.hpp

16 lines
345 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-04-18 01:58:13 +00:00
#include "Runtime/RetroTypes.hpp"
2016-04-18 01:58:13 +00:00
2018-12-08 05:30:43 +00:00
namespace urde {
2016-04-18 01:58:13 +00:00
2018-12-08 05:30:43 +00:00
class CScannableParameters {
CAssetId x0_scanId;
2016-04-18 01:58:13 +00:00
public:
constexpr CScannableParameters() = default;
constexpr explicit CScannableParameters(CAssetId id) : x0_scanId(id) {}
[[nodiscard]] constexpr CAssetId GetScanId() const { return x0_scanId; }
2016-04-18 01:58:13 +00:00
};
2018-12-08 05:30:43 +00:00
} // namespace urde