1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-11 23:58:08 -05:00

add a bit more logged for when live radar fail to update

update killhouse map offsets (it's still wrong though)
This commit is contained in:
RaidMax
2019-07-29 12:08:25 -05:00
parent e3802388af
commit 984573c902
10 changed files with 97 additions and 22 deletions

View File

@ -5,8 +5,17 @@ using System.Threading.Tasks;
namespace SharedLibraryCore.Interfaces
{
/// <summary>
/// represents an invokable middleware action
/// </summary>
/// <typeparam name="T"></typeparam>
public interface IMiddlewareAction<T>
{
/// <summary>
/// action to execute when the middleware action is invoked
/// </summary>
/// <param name="original"></param>
/// <returns>modified original action type instance</returns>
Task<T> Invoke(T original);
}
}