Class: Wield
- Inherits:
-
Object
- Object
- Wield
- Defined in:
- models.rb
Class Method Summary (collapse)
-
+ (String) left
Wield left.
-
+ (String) left_noun
Wield left noun.
-
+ (String) right
Wield right.
-
+ (String) right_noun
Wield right noun.
Class Method Details
+ (String) left
Wield left
99 100 101 102 |
# File 'models.rb', line 99 def self.left() $_api_socket.puts "GET WIELD_LEFT\n" $_api_socket.gets('\0').chomp('\0').to_s end |
+ (String) left_noun
Wield left noun
110 111 112 113 |
# File 'models.rb', line 110 def self.left_noun() $_api_socket.puts "GET WIELD_LEFT_NOUN\n" $_api_socket.gets('\0').chomp('\0').to_s end |
+ (String) right
Wield right
78 79 80 81 |
# File 'models.rb', line 78 def self.right() $_api_socket.puts "GET WIELD_RIGHT\n" $_api_socket.gets('\0').chomp('\0').to_s end |
+ (String) right_noun
Wield right noun
88 89 90 91 |
# File 'models.rb', line 88 def self.right_noun() $_api_socket.puts "GET WIELD_RIGHT_NOUN\n" $_api_socket.gets('\0').chomp('\0').to_s end |