mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 15:11:22 +00:00
16 lines
284 B
C++
16 lines
284 B
C++
#pragma once
|
|
|
|
#include "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
|