2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 22:27:43 +00:00

Text system updates

This commit is contained in:
Jack Andersen
2015-11-28 16:55:30 -10:00
parent 4ede0d6858
commit b4ffb13903
14 changed files with 272 additions and 17 deletions

View File

@@ -0,0 +1,11 @@
#include "Specter/ScrollView.hpp"
namespace Specter
{
ScrollView::ScrollView(ViewSystem& system, View& parentView, View& contentView)
: View(system, parentView), m_contentView(contentView)
{
}
}