com.alicizax.unity.focus-cr.../Runtime/BeanBase.cs

9 lines
109 B
C#
Raw Permalink Normal View History

2025-01-09 14:22:37 +08:00
2025-01-23 10:35:19 +08:00
namespace Luban
2025-01-09 14:22:37 +08:00
{
2025-01-23 10:35:19 +08:00
public abstract class BeanBase
2025-01-09 14:22:37 +08:00
{
public abstract int GetTypeId();
}
2025-01-23 10:35:19 +08:00
}