blob: 141e1a809907b706b237617b8e2593a8969bf152 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "Component.h"
using namespace crepe;
Component::Component(game_object_id_t id) : game_object_id(id) {}
Component & Component::operator=(const Component &) {
return *this;
}
|