10 lines
278 B
C#
10 lines
278 B
C#
|
namespace RND
|
|||
|
{
|
|||
|
|
|||
|
public static class Save
|
|||
|
{
|
|||
|
public static PlayerProgress Progress { get; } = new PlayerProgress();
|
|||
|
public static Inventory Inventory { get; } = new Inventory();
|
|||
|
public static Buffs Buffs { get; } = new Buffs();
|
|||
|
}
|
|||
|
}
|