9 lines
No EOL
203 B
C#
9 lines
No EOL
203 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace WingsEmu.Game.Compliments;
|
|
|
|
public interface IComplimentsManager
|
|
{
|
|
Task<bool> CanRefresh(long characterId);
|
|
Task<bool> CanCompliment(long accountId);
|
|
} |