added GPL copyrights
[physics.git] / src / entityManager.h
index a9d8e36..824282b 100644 (file)
@@ -1,10 +1,27 @@
+/*
+ *  Copyright (C) 2008 Patrik Gornicz, Gornicz_P (at) hotmail (dot) com.
+ *
+ *  This program is free software: you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation, either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
 #ifndef ENTITYMANAGER_H
 #define ENTITYMANAGER_H
 
 #include "Entities/Entity.h"
 
 /// ***** Header Methods *****
-namespace entityManager
+namespace manager
 {
     void init();
     void clean();
@@ -12,7 +29,6 @@ namespace entityManager
     // does not new or delete Entities
     void add(Entity*);
     void remove(Entity*);
-    void clear();
 
     void update(float);
     void draw();