00001 /*************************************************************************** 00002 * * 00003 * This program is free software; you can redistribute it and/or modify * 00004 * it under the terms of the GNU General Public License as published by * 00005 * the Free Software Foundation; either version 2 of the License, or * 00006 * (at your option) any later version. * 00007 * * 00008 ***************************************************************************/ 00009 00010 #ifndef mapitemtypeH 00011 #define mapitemtypeH 00012 00013 #include "ascstring.h" 00014 00016 class MapItemType { 00017 public: 00018 virtual ASCString getName() const = 0; 00019 virtual int getID() const = 0; 00020 virtual ~MapItemType() {}; 00021 }; 00022 00023 #endif
1.4.2