1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#! /usr/bin/env ruby module ColonialTwilight class GOVPlayer < Player def play(possible_actions) @possible_actions = possible_actions _init _start end private def _start puts 'FIXME' exit 1 end end end