aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Metadata.cpp
blob: d362e0af0636e8eda84bc0870144fe738a7586d7 (plain)
1
2
3
4
5
6
7
8
9
#include "Metadata.h"

using namespace crepe;
using namespace std;

Metadata::Metadata(uint32_t gameObjectId, string name, string tag)
	: Component(gameObjectId), name(name), tag(tag) {}

int Metadata::get_instances_max() const { return 1; }