2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-04-18 01:58:13 +00:00
|
|
|
|
2019-09-23 19:00:23 +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-12-19 18:27:58 +00:00
|
|
|
|
2016-04-18 01:58:13 +00:00
|
|
|
public:
|
2020-03-27 22:56:34 +00:00
|
|
|
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
|