metaforce/DataSpec/DNACommon/Tweaks/ITweakSlideShow.hpp

21 lines
468 B
C++
Raw Normal View History

2016-09-16 20:18:03 +00:00
#ifndef __DNACOMMON_ITWEAKSLIDESHOW_HPP__
#define __DNACOMMON_ITWEAKSLIDESHOW_HPP__
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
{
virtual const std::string& 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
};
}
#endif // __DNACOMMON_ITWEAKSLIDESHOW_HPP__