Files
Net.Like.Xue.Tokyo/Packages-Local/Com.Project.B/Survival/SurvivalProperties.cs

26 lines
458 B
C#
Raw Normal View History

2025-06-24 23:49:13 +08:00
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;
}
}