00001 /* $Id:party.h jjs $ */ 00002 /* 00003 Copyright (C) 2007 by Jurjen Stellingwerff <jurjen@stwerff.xs4all.nl> 00004 Part of the Moros Project http://moros.sourceforge.net/ 00005 00006 This program is free software; you can redistribute it and/or modify 00007 it under the terms of the GNU General Public License. 00008 This program is distributed in the hope that it will be useful, 00009 but WITHOUT ANY WARRANTY. 00010 00011 See the COPYING file for more details. 00012 */ 00013 #ifndef __PARTY_H 00014 #define __PARTY_H 00015 00016 #include <string> 00017 #include "../general/channel.h" 00018 00020 00021 class party { 00022 public: 00023 std::string name; 00024 std::string description; 00025 void save(channel *ch); 00026 }; 00027 00029 00030 party load_party(channel *ch); 00031 00032 #endif