codegame 0.7.0

CodeGame framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
require_relative 'model'

class MyStrategy
    def get_action(player_view, debug_interface)
        raise NotImplementedError
    end
    def debug_update(player_view, debug_interface)
        debug_interface.send(DebugCommand::Clear.new())
        debug_interface.get_state()
    end
end