1 /* 2 swgames - SW definition of games 3 4 Copyright (C) 1984-2003 David L. Clark. 5 This program is free software; you can redistribute it and/or modify it under 6 the terms of the GNU General Public License as published by the Free Software 7 Foundation; either version 2 of the License, or (at your option) any later 8 version. This program is distributed in the hope that it will be useful, 9 but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 10 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 11 more details. You should have received a copy of the GNU General Public 12 License along with this program; if not, write to the Free Software Foundation, 13 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 14 15 Author: Dave Clark 16 17 Modification History: 18 84-02-08 Development 19 87-03-09 Microsoft compiler. 20 2003-01-27 GNU General Public License 21 */ 22 #include "sw.h" 23 24 25 26 27 28 GAMES swgames[1] = { 29 { 30 1270, 588, 1330, 1360, 1630, 1660, 2456, 1720, 31 0, 0, 0, 0, 1, 1, 1, 1 , 32 33 NULL, 34 7491, 35 NULL, 36 191, 284, 409, 539, 685, 37 807, 934, 1210, 1240, 1440, 38 1550, 1750, 1780, 2024, 2159, 39 2279, 2390, 2549, 2678, 2763, 40 41 1, 3, 1, 1, 3, 42 0, 1, 2, 0, 3, 43 3, 0, 2, 1, 1, 44 3, 3, 0, 0, 1 45 46 } 47 48 }; 49 ÿ