summaryrefslogtreecommitdiffstats
path: root/lib/colonial_twilight/gov_player.rb
blob: 5a0999eddaecba70b9757b6eb46483716db6dd16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

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