mirror of
https://github.com/edgegamers/Jailbreak.git
synced 2025-12-05 20:40:29 -08:00
14 lines
329 B
C#
14 lines
329 B
C#
using CounterStrikeSharp.API.Core;
|
|
using Jailbreak.Formatting.Base;
|
|
|
|
namespace Jailbreak.Formatting.Views;
|
|
|
|
public interface IRaceLRMessages {
|
|
public IView EndRaceInstruction { get; }
|
|
|
|
public IView RaceStartingMessage(CCSPlayerController prisoner);
|
|
|
|
public IView NotInRaceLR();
|
|
|
|
public IView NotInPendingState();
|
|
} |