L2Bot2.0/Client/Domain/Helpers/ExperienceHelperInterface.cs
2023-01-29 21:46:46 +04:00

14 lines
263 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Client.Domain.Helpers
{
public interface ExperienceHelperInterface
{
ulong GetExperienceToLevel(uint level);
}
}