00001 /*************************************************************************** 00002 entity.h - description 00003 ------------------- 00004 begin : Wed Nov 21 2001 00005 copyright : (C) 2001 by Vlad Mereuta 00006 email : dizzy@deity.fsnet.co.uk 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 #ifdef HAVE_CONFIG_H 00018 #include "config.h" 00019 #endif 00020 00021 #ifndef ENTITY_H 00022 #define ENTITY_H 00023 00024 #include <string> 00025 #include <vector> 00026 00027 namespace DALT_Client { 00028 00031 class Entity 00032 { 00033 public: 00035 string type; 00037 int id; 00039 vector<int> coordinates; 00040 00041 Entity(); 00042 Entity(string entity_type, int entity_id, vector<int>& position); 00043 ~Entity(); 00044 }; 00045 00046 } 00047 00048 #endif