mirror of https://github.com/AxioDL/metaforce.git
12 lines
198 B
C++
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)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
}
|