codegame 0.7.0

CodeGame framework
Documentation
1
2
3
4
5
6
7
8
9
10
import model


class MyStrategy:
    def get_action(self, player_view, debug_interface):
        raise NotImplementedError()

    def debug_update(self, player_view, debug_interface):
        debug_interface.send(model.DebugCommand.Clear())
        debug_interface.get_state()