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_HPP_ 00014 #define PARTY_HPP_ 00015 00017 00018 struct color { 00019 int r; 00020 int g; 00021 int b; 00022 }; 00023 00025 00026 class client_party { 00027 public: 00028 string name; 00029 string description; 00030 color color_1; 00031 color color_2; 00032 } 00033 00034 #endif /*PARTY_HPP_*/