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

using namespace crepe;
using namespace std;

Metadata::Metadata(uint32_t game_object_id, const string & name,
				   const string & tag)
	: Component(game_object_id), NAME(name), TAG(tag) {}