Added librarys and test application

This commit is contained in:
Gulum
2017-10-22 14:26:55 +02:00
parent 7e0c0d8a6c
commit ac45f1f944
206 changed files with 68009 additions and 13 deletions

26
include/entityx/Event.cc Normal file
View File

@@ -0,0 +1,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