mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-30 00:48:00 +01:00
16 lines
203 B
C#
16 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;
|
||
|
}
|
||
|
}
|