-
Notifications
You must be signed in to change notification settings - Fork 13
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
81 changed files
with
965 additions
and
444 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
2 changes: 2 additions & 0 deletions
2
src/EvoSC.Common/Interfaces/Controllers/IPlayerInteractionContext.cs
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,11 @@ | ||
using EvoSC.Common.Interfaces.Models; | ||
using EvoSC.Common.Interfaces.Services; | ||
|
||
namespace EvoSC.Common.Interfaces.Controllers; | ||
|
||
public interface IPlayerInteractionContext : IGenericControllerContext | ||
{ | ||
public IOnlinePlayer Player { get; } | ||
public IServerClient Server { get; } | ||
public IChatService Chat => Server.Chat; | ||
} |
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,5 +1,10 @@ | ||
namespace EvoSC.Common.Interfaces; | ||
using EvoSC.Common.Interfaces.Models; | ||
using EvoSC.Common.Remote.ChatRouter; | ||
|
||
namespace EvoSC.Common.Interfaces; | ||
|
||
public interface IRemoteChatRouter | ||
{ | ||
public Task SendMessageAsync(string message, IOnlinePlayer actor); | ||
public Task SendMessageAsync(ChatRouterPipelineContext pipelineContext); | ||
} |
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
Oops, something went wrong.