Files
Ragon/Game/Source/GameAuthorizer.cs
T

11 lines
185 B
C#
Raw Normal View History

2022-04-30 08:20:17 +04:00
using Ragon.Core;
namespace Game.Source;
public class GameAuthorizer: AuthorizationManager
{
public override bool OnAuthorize(uint peerId, byte[] payload)
{
return true;
}
}