NahidaImpact/NahidaImpact.Gameserver/Controllers/Result/IResult.cs

9 lines
233 B
C#
Raw Normal View History

2024-01-04 13:48:39 +00:00
using System.Diagnostics.CodeAnalysis;
using NahidaImpact.Gameserver.Network;
namespace NahidaImpact.Gameserver.Controllers.Result;
internal interface IResult
{
bool NextPacket([MaybeNullWhen(false)] out NetPacket packet);
}