2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-08-04 23:35:39 +00:00
metaforce/specter/lib/ScrollView.cpp
2015-11-28 16:55:30 -10:00

12 lines
198 B
C++

#include "Specter/ScrollView.hpp"
namespace Specter
{
ScrollView::ScrollView(ViewSystem& system, View& parentView, View& contentView)
: View(system, parentView), m_contentView(contentView)
{
}
}