2016-04-18 01:58:13 +00:00
|
|
|
#ifndef __URDE_CSCANNABLEPARAMETERS_HPP__
|
|
|
|
#define __URDE_CSCANNABLEPARAMETERS_HPP__
|
|
|
|
|
|
|
|
#include "RetroTypes.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
|
|
|
|
class CScannableParameters
|
|
|
|
{
|
2017-11-15 04:12:13 +00:00
|
|
|
CAssetId x0_scanId;
|
2016-12-19 18:27:58 +00:00
|
|
|
|
2016-04-18 01:58:13 +00:00
|
|
|
public:
|
2016-04-18 05:33:23 +00:00
|
|
|
CScannableParameters() = default;
|
2017-08-13 05:26:14 +00:00
|
|
|
CScannableParameters(CAssetId id) : x0_scanId(id) {}
|
2017-11-24 08:23:28 +00:00
|
|
|
CAssetId GetScanId() const { return x0_scanId; }
|
2016-04-18 01:58:13 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __URDE_CSCANNABLEPARAMETERS_HPP__
|