summaryrefslogtreecommitdiffstats
path: root/lib/colonial_twilight/actions/fln/fln_action.rb
blob: fc05a5e68bc86e8d66bca8184f430322df54dc7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require_relative '../action'

module ColonialTwilight
  module Actions
    class FlnAction < GameAction
      def initialize(space, mode, cost)
        super(:FLN, space, mode, cost)
      end
    end
  end
end