blizzless-diiis/src/DiIiS-NA/BGS-Server/Base/HandlerController.cs
Lucca Faria Ferri 2ebdff6c61 MonsterBrain.cs cleanup.
Removed Blizzless using comments as it clutters the dependency view.
2023-01-27 12:02:19 -08:00

46 lines
833 B
C#

//Blizzless Project 2022
using bgs.protocol;
using DiIiS_NA.LoginServer.Battle;
using Google.ProtocolBuffers;
using System;
namespace DiIiS_NA.LoginServer.Base
{
public class HandlerController : IRpcController
{
public BattleClient Client { get; set; }
public Header LastCallHeader { get; set; }
public uint Status { get; set; }
public ulong ListenerId { get; set; }
public string ErrorText { get; }
public bool Failed { get; }
public bool IsCanceled()
{
return false;
}
public void Reset()
{
}
public void StartCancel()
{
}
public void SetFailed(string reason)
{
}
public void NotifyOnCancel(Action<object> callback)
{
}
}
}