mirror of
https://github.com/project-redbud/FunGame-Server.git
synced 2025-04-20 19:19:39 +08:00
13 lines
244 B
C#
13 lines
244 B
C#
using Milimoe.FunGame.Server.Model;
|
|
|
|
namespace Milimoe.FunGame.Server.Utility
|
|
{
|
|
public class TFA : Core.Api.Utility.TFA
|
|
{
|
|
public override bool IsAvailable(string username)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|