2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-03 05:15:53 +00:00
metaforce/specter/include/Specter/ScrollView.hpp

28 lines
350 B
C++

#ifndef SPECTER_SCROLLVIEW_HPP
#define SPECTER_SCROLLVIEW_HPP
#include "View.hpp"
namespace Specter
{
class ViewResources;
class ScrollView : public View
{
public:
enum class Style
{
};
private:
View* m_contentView = nullptr;
public:
ScrollView(ViewResources& res, View& parentView);
};
}
#endif // SPECTER_SCROLLVIEW_HPP