GameMode/Rules/Is/ITimerString.cs

Internal interface ITimerString in namespace KOTH that defines a default implementation of GetTimerString returning an empty string.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace KOTH;

internal interface ITimerString
{ 
	public string GetTimerString()
	{
		return "";
	}
}