mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-29 16:37:59 +01:00
15 lines
203 B
C#
15 lines
203 B
C#
namespace Fie.Manager
|
|
{
|
|
public struct FieLevelInfo
|
|
{
|
|
public int level;
|
|
|
|
public int levelCap;
|
|
|
|
public int totalExp;
|
|
|
|
public int requiredExpToNextLevel;
|
|
|
|
public int currentExpToNextLevel;
|
|
}
|
|
}
|