10 lines
190 B
C#
10 lines
190 B
C#
![]() |
using System.Collections.Generic;
|
||
|
using Entity;
|
||
|
|
||
|
namespace Managers
|
||
|
{
|
||
|
public class SaveManager:Utils.Singleton<SaveManager>
|
||
|
{
|
||
|
public List<Hediff> baseHediffs = new();
|
||
|
}
|
||
|
}
|