Files
Net.Project.B/Src/Survival/SurvivalProperties.cs
CortexCore 3f9d9f19ce 1
2025-04-14 15:39:24 +08:00

26 lines
458 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using BITKit;
namespace Net.Project.B.Survival
{
[Serializable]
public struct AddHp : IScriptableItemProperty
{
public int value;
}
[Serializable]
public struct AddHunger : IScriptableItemProperty
{
public int value;
}
[Serializable]
public struct AddThirsty : IScriptableItemProperty
{
public int value;
}
}