2016-09-16 20:18:03 +00:00
|
|
|
#ifndef _DNAMP1_CTWEAKSLIDESHOW_HPP_
|
|
|
|
#define _DNAMP1_CTWEAKSLIDESHOW_HPP_
|
|
|
|
|
|
|
|
#include "../../DNACommon/Tweaks/ITweakSlideShow.hpp"
|
|
|
|
#include "zeus/CColor.hpp"
|
|
|
|
|
2017-12-29 08:08:12 +00:00
|
|
|
namespace DataSpec::DNAMP1
|
2016-09-16 20:18:03 +00:00
|
|
|
{
|
|
|
|
|
2017-08-27 03:02:18 +00:00
|
|
|
struct CTweakSlideShow final : ITweakSlideShow
|
2016-09-16 20:18:03 +00:00
|
|
|
{
|
2018-02-22 07:24:51 +00:00
|
|
|
AT_DECL_DNA_YAML
|
2016-09-16 20:18:03 +00:00
|
|
|
|
|
|
|
String<-1> x4_pakName;
|
|
|
|
String<-1> x14_fontAssetName;
|
2016-09-16 23:43:33 +00:00
|
|
|
DNAColor x24_fontColor;
|
|
|
|
DNAColor x28_outlineColor;
|
2017-07-31 05:19:05 +00:00
|
|
|
Value<float> x2c_scanPercentInterval;
|
2016-09-16 20:18:03 +00:00
|
|
|
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); }
|
2016-09-16 23:43:33 +00:00
|
|
|
|
2017-11-13 06:19:18 +00:00
|
|
|
std::string_view GetFont() const { return x14_fontAssetName; }
|
2016-09-16 23:43:33 +00:00
|
|
|
const zeus::CColor& GetFontColor() const { return x24_fontColor; }
|
|
|
|
const zeus::CColor& GetOutlineColor() const { return x28_outlineColor; }
|
2017-07-31 05:19:05 +00:00
|
|
|
float GetScanPercentInterval() const { return x2c_scanPercentInterval; }
|
2016-09-16 23:43:33 +00:00
|
|
|
float GetX54() const { return x54_; }
|
2016-09-16 20:18:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // _DNAMP1_CTWEAKSLIDESHOW_HPP_
|