This commit is contained in:
CortexCore
2025-03-10 18:06:24 +08:00
parent 88f1ff1b04
commit 16dd934194
18 changed files with 240 additions and 15 deletions

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections;
using System.Collections.Generic;
using BITKit;
// ReSharper disable InconsistentNaming
namespace Net.Project.B.Impact
{
public enum ImpactType
{
none=0,
metal=1,
blood=2,
glass=3,
water=4,
}
[Serializable]
public struct ImpactTypeReference : IReference
{
public ImpactType impactType;
public string Get() => impactType.ToString();
}
}