Arie/tf2_line_parser

View on GitHub
lib/tf2_line_parser/events/round_start.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module TF2LineParser
  module Events
    class RoundStart < RoundEventWithoutVariables
      def self.round_type
        @round_type ||= 'Round_Start'
      end
    end
  end
end