metaforce/DataSpec/DNACommon/Tweaks/ITweakSlideShow.hpp

16 lines
372 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-09-16 20:18:03 +00:00
2017-01-21 06:03:37 +00:00
#include "ITweak.hpp"
2016-09-16 20:18:03 +00:00
2018-12-08 05:30:43 +00:00
namespace DataSpec {
struct ITweakSlideShow : ITweak {
virtual std::string_view GetFont() const = 0;
virtual const zeus::CColor& GetFontColor() const = 0;
virtual const zeus::CColor& GetOutlineColor() const = 0;
virtual float GetScanPercentInterval() const = 0;
virtual float GetX54() const = 0;
2016-09-16 20:18:03 +00:00
};
2018-12-08 05:30:43 +00:00
} // namespace DataSpec