aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Metadata.cpp
blob: 3d1d910403f79ed401647dc272614a6d6532ed99 (plain)
1
2
3
4
5
6
7
8
9
10
#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;
}