Class: PFM::Storage::BattleBox
Overview
Class Responsive of holding a team that can be used for battles
Instance Attribute Summary collapse
-
#content ⇒ Array<PFM::Pokemon>
readonly
Content of the storage.
-
#name ⇒ String
Name of the storage.
Instance Method Summary collapse
-
#initialize(name, content_overload = nil) ⇒ BattleBox
constructor
Create a new battle box.
Constructor Details
#initialize(name, content_overload = nil) ⇒ BattleBox
Create a new battle box
190 191 |
# File 'docs/4_Systems_200_Storage.rb', line 190 def initialize(name, content_overload = nil) end |
Instance Attribute Details
#content ⇒ Array<PFM::Pokemon> (readonly)
Content of the storage
186 187 188 |
# File 'docs/4_Systems_200_Storage.rb', line 186 def content @content end |
#name ⇒ String
Name of the storage
183 184 185 |
# File 'docs/4_Systems_200_Storage.rb', line 183 def name @name end |