Class: RPG::Enemy::DropItem
- Inherits:
-
Object
- Object
- RPG::Enemy::DropItem
- Defined in:
- lib/R3EXS/RGSS3.rb
Instance Attribute Summary collapse
-
#data_id ⇒ Object
Returns the value of attribute data_id.
-
#denominator ⇒ Object
Returns the value of attribute denominator.
-
#kind ⇒ Object
Returns the value of attribute kind.
Instance Method Summary collapse
-
#initialize ⇒ DropItem
constructor
A new instance of DropItem.
Constructor Details
#initialize ⇒ DropItem
Returns a new instance of DropItem.
1015 1016 1017 1018 1019 |
# File 'lib/R3EXS/RGSS3.rb', line 1015 def initialize @kind = 0 @data_id = 1 @denominator = 1 end |
Instance Attribute Details
#data_id ⇒ Object
Returns the value of attribute data_id.
1022 1023 1024 |
# File 'lib/R3EXS/RGSS3.rb', line 1022 def data_id @data_id end |
#denominator ⇒ Object
Returns the value of attribute denominator.
1023 1024 1025 |
# File 'lib/R3EXS/RGSS3.rb', line 1023 def denominator @denominator end |
#kind ⇒ Object
Returns the value of attribute kind.
1021 1022 1023 |
# File 'lib/R3EXS/RGSS3.rb', line 1021 def kind @kind end |