templates/bot.erb in rtanque-0.0.2 vs templates/bot.erb in rtanque-0.1.0
- old
+ new
@@ -2,10 +2,16 @@
NAME = '<%= @bot_name %>'
include RTanque::Bot::BrainHelper
def tick!
## main logic goes here
+
# use self.sensors to detect things
+ # See http://rubydoc.info/github/awilliams/RTanque/master/RTanque/Bot/Sensors
+
# use self.command to control tank
+ # See http://rubydoc.info/github/awilliams/RTanque/master/RTanque/Bot/Command
+
# self.arena contains the dimensions of the arena
+ # See http://rubydoc.info/github/awilliams/RTanque/master/frames/RTanque/Arena
end
-end
\ No newline at end of file
+end