class Main::MultiMap
Attributes
local[R]
remote[R]
Public Class Methods
new(main,nx,ny)
click to toggle source
Calls superclass method
# File bin/tactical_fighter, line 574 def initialize(main,nx,ny) @main=main super() pack_start(@local=Map.new(main,Map::Local,nx,ny),true,true) #pack_start(Gtk::Fixed.new.set_size_request(10,10)) pack_start(@remote=Map.new(main,Map::Remote,nx,ny),true,true) show_all end