summaryrefslogtreecommitdiffstats
path: root/lib/colonial_twilight/gov_player.rb
blob: 180ddc6623589178f4c8aca23098176eb7e02f17 (plain)
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