-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
131 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,17 @@ | ||
using CounterStrikeSharp.API.Core; | ||
using Jailbreak.Formatting.Base; | ||
using Jailbreak.Public.Mod.LastRequest; | ||
using Jailbreak.Public.Mod.LastRequest.Enums; | ||
|
||
namespace Jailbreak.Formatting.Views; | ||
|
||
public interface ILastRequestMessages | ||
{ | ||
public IView LastRequestEnabled(); | ||
public IView LastRequestDisabled(); | ||
public IView InvalidLastRequest(string query); | ||
public IView InvalidPlayerChoice(CCSPlayerController player, string reason); | ||
public IView InformLastRequest(AbstractLastRequest lr); | ||
public IView AnnounceLastRequest(AbstractLastRequest lr); | ||
public IView LastRequestDecided(AbstractLastRequest lr, LRResult result); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters