mirror of
https://github.com/Bragin-Stepan/project-entity.git
synced 2026-03-05 07:41:10 +00:00
11 lines
278 B
C#
11 lines
278 B
C#
using System.Collections.Generic;
|
|
using _Project.Develop.Runtime.Logic.Meta.Features.Wallet;
|
|
|
|
namespace Assets._Project.Develop.Runtime.Utilities.DataManagement
|
|
{
|
|
public class PlayerData : ISaveData
|
|
{
|
|
public Dictionary<CurrencyTypes, int> WalletData;
|
|
}
|
|
}
|