public
Description: The opposite sexes has decided to go to war with each other for the ownership over the playground!
Homepage:
Clone URL: git://github.com/kiba/playground-wars.git
playground-wars / playgroundwars.rb
100644 65 lines (60 sloc) 1.564 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#Playground Wars
#Copyright (C) 2008 Han Dao, Iwan Gabovitch, and contributors
 
#Kiba Role Playing Game Engine(KRPGE)
#Copyright (C) 2008 Han Dao and contributors
#
#This program is free software: you can redistribute it and/or modify
#it under the terms of the GNU General Public License as published by
#the Free Software Foundation, either version 3 of the License, or
#(at your option) any later version.
#
#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#GNU General Public License for more details.
#
#You should have received a copy of the GNU General Public License
#along with this program. If not, see <http://www.gnu.org/licenses/>.
 
#You can contact the author at wikipediankiba@gmail.com
 
%w{
rubygems
rubygame
rubygame/ftor
rbgooey
yaml
lib/mapengine.rb
lib/gameengine.rb
lib/mapcalculator.rb
lib/mapfiles.rb
lib/character.rb
lib/setup.rb
lib/controller.rb
lib/mapdata.rb
lib/maptile.rb
lib/camera.rb
lib/timer.rb
lib/maplaw.rb
lib/itemslaw.rb
lib/characterslaw.rb
lib/itemstracker.rb
lib/itemexample.rb
lib/gamelaw.rb
lib/adapter.rb
lib/characterstracker.rb
lib/chartype.rb
lib/itemtype.rb
lib/unit.rb
lib/supplyboy.rb
lib/slinger.rb
lib/knight.rb
lib/parent.rb
lib/mapterrain.rb
lib/gamecursor.rb
lib/unitcontrol.rb
lib/hud.rb
lib/dumbai.rb
}.each{|lib| require lib}
include Rubygame
TTF.setup
 
game = GameSetup.new()
game.start()