summaryrefslogtreecommitdiffstats
path: root/lib/colonial_twilight/gov_player.rb
blob: 3821b8c69ecd6cfa31e5913a4df8bfede662c654 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-

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