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

using namespace crepe;
using namespace std;

Metadata::Metadata(game_object_id_t id, const string & name, const string & tag)
	: Component(id),
	  name(name),
	  tag(tag) {}