Class: Studio::WorldMap
Overview
Data class describing a worldmap
Instance Attribute Summary collapse
-
#db_symbol ⇒ Symbol
readonly
db_symbol of the worldmap.
-
#grid ⇒ Array
readonly
Grid of the worldmap (2D array of zone id).
-
#id ⇒ Integer
readonly
ID of the worldmap.
-
#image ⇒ String
readonly
Image filename of the worldmap.
-
#region_name ⇒ CSVAccess
readonly
Get the region name.
Instance Method Summary collapse
-
#name ⇒ String
Name of the region.
Instance Attribute Details
#db_symbol ⇒ Symbol (readonly)
db_symbol of the worldmap
1066 1067 1068 |
# File 'docs/3_Studio.rb', line 1066 def db_symbol @db_symbol end |
#grid ⇒ Array (readonly)
Grid of the worldmap (2D array of zone id)
1072 1073 1074 |
# File 'docs/3_Studio.rb', line 1072 def grid @grid end |
#id ⇒ Integer (readonly)
ID of the worldmap
1063 1064 1065 |
# File 'docs/3_Studio.rb', line 1063 def id @id end |
#image ⇒ String (readonly)
Image filename of the worldmap
1069 1070 1071 |
# File 'docs/3_Studio.rb', line 1069 def image @image end |
#region_name ⇒ CSVAccess (readonly)
Get the region name
1075 1076 1077 |
# File 'docs/3_Studio.rb', line 1075 def region_name @region_name end |