2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-09-16 20:18:03 +00:00
|
|
|
|
|
|
|
#include "../../DNACommon/Tweaks/ITweakSlideShow.hpp"
|
|
|
|
#include "zeus/CColor.hpp"
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace DataSpec::DNAMP1 {
|
|
|
|
|
|
|
|
struct CTweakSlideShow final : ITweakSlideShow {
|
|
|
|
AT_DECL_DNA_YAML
|
|
|
|
|
|
|
|
String<-1> x4_pakName;
|
|
|
|
String<-1> x14_fontAssetName;
|
|
|
|
DNAColor x24_fontColor;
|
|
|
|
DNAColor x28_outlineColor;
|
|
|
|
Value<float> x2c_scanPercentInterval;
|
|
|
|
Value<float> x30_;
|
|
|
|
Value<float> x34_;
|
|
|
|
Value<float> x38_;
|
|
|
|
Value<float> x3c_;
|
|
|
|
DNAColor x40_;
|
|
|
|
Value<float> x44_;
|
|
|
|
Value<float> x48_;
|
|
|
|
Value<float> x4c_;
|
|
|
|
Value<float> x50_;
|
|
|
|
Value<float> x54_;
|
|
|
|
Value<float> x58_;
|
|
|
|
|
|
|
|
CTweakSlideShow() = default;
|
|
|
|
CTweakSlideShow(athena::io::IStreamReader& in) { read(in); }
|
|
|
|
|
2019-08-10 02:32:48 +00:00
|
|
|
std::string_view GetFont() const override { return x14_fontAssetName; }
|
|
|
|
const zeus::CColor& GetFontColor() const override { return x24_fontColor; }
|
|
|
|
const zeus::CColor& GetOutlineColor() const override { return x28_outlineColor; }
|
|
|
|
float GetScanPercentInterval() const override { return x2c_scanPercentInterval; }
|
|
|
|
float GetX54() const override { return x54_; }
|
2016-09-16 20:18:03 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace DataSpec::DNAMP1
|