aboutsummaryrefslogtreecommitdiff
path: root/core/src/Model/Template/Template_Main.cpp
blob: 35da52bcff7a4055f39d9e2b6fa323814b091369 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "Template.hpp"

Template::Template(Kind kind)
	: mKind{ kind }
{
}

Template::Kind Template::GetKind() const
{
	return mKind;
}

std::unique_ptr<Template> TemplateInfo::LoadFromDisk() const
{
	// TODO
	return nullptr;
}