Class: Game_SelfSwitches

Inherits:
Object show all
Defined in:
docs/00600_Script_RMXP.rb

Overview

Author:

  • Enterbrain

Instance Method Summary collapse

Constructor Details

#initializeGame_SelfSwitches

Default initialization



33
34
# File 'docs/00600_Script_RMXP.rb', line 33

def initialize
end

Instance Method Details

#[](key) ⇒ Boolean

Get the state of a self switch

Parameters:

  • key (Array)

    the key that identify the self switch

Returns:

  • (Boolean)


38
39
# File 'docs/00600_Script_RMXP.rb', line 38

def [](key)
end

#[]=(key, value)

Set the state of a self switch

Parameters:

  • key (Array)

    the key that identify the self switch

  • value (Boolean)

    the new value of the self switch



43
44
# File 'docs/00600_Script_RMXP.rb', line 43

def []=(key, value)
end