diff options
Diffstat (limited to 'entityx/System.cc')
-rw-r--r-- | entityx/System.cc | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/entityx/System.cc b/entityx/System.cc index 8209a95..44995bc 100644 --- a/entityx/System.cc +++ b/entityx/System.cc @@ -1,24 +1,24 @@ -/*
- * 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/System.h"
-
-namespace entityx {
-
-BaseSystem::Family BaseSystem::family_counter_;
-
-void SystemManager::configure() {
- for (auto pair : systems_) {
- pair.second->configure(event_manager_);
- }
- initialized_ = true;
-}
-
-}
+/* + * 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/System.h" + +namespace entityx { + +BaseSystem::Family BaseSystem::family_counter_; + +void SystemManager::configure() { + for (auto pair : systems_) { + pair.second->configure(event_manager_); + } + initialized_ = true; +} + +} |