mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-17 18:46:00 +00:00
12 lines
201 B
C++
12 lines
201 B
C++
#include "Specter/ScrollView.hpp"
|
|
|
|
namespace Specter
|
|
{
|
|
|
|
ScrollView::ScrollView(ViewResources& system, View& parentView, View& contentView)
|
|
: View(system, parentView), m_contentView(contentView)
|
|
{
|
|
}
|
|
|
|
}
|