metaforce/DataSpec/DNACommon/Tweaks/ITweakSlideShow.hpp

19 lines
351 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
namespace DataSpec
{
2017-01-21 06:03:37 +00:00
struct ITweakSlideShow : ITweak
2016-09-16 20:18:03 +00:00
{
2017-11-13 06:19:18 +00:00
virtual std::string_view GetFont() const=0;
virtual const zeus::CColor& GetFontColor() const=0;
virtual const zeus::CColor& GetOutlineColor() const=0;
2017-07-31 05:19:05 +00:00
virtual float GetScanPercentInterval() const=0;
virtual float GetX54() const=0;
2016-09-16 20:18:03 +00:00
};
}