blob: b719c5d650788d246a273f2188c0363a83f66b72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
* Copyright (C) 2012 Alec Thomas <alec@swapoff.org>
* All rights reserved.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution.
*
* Author: Alec Thomas <alec@swapoff.org>
*/
#include "entityx/Event.h"
namespace entityx {
BaseEvent::Family BaseEvent::family_counter_ = 0;
BaseEvent::~BaseEvent() {
}
EventManager::EventManager() {
}
EventManager::~EventManager() {
}
} // namespace entityx
|