整合SLSUtilities
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
namespace LunaWolfStudios.ScriptableSheets.Samples.DeepInheritance
|
||||
{
|
||||
public interface IBaseEntity
|
||||
{
|
||||
string FriendlyName { get; set; }
|
||||
string ScientificName { get; set; }
|
||||
string Description { get; set; }
|
||||
NativeRegion NativeRegions { get; set; }
|
||||
Habitat Habitats { get; set; }
|
||||
}
|
||||
|
||||
public interface IBaseEntity<T> : IBaseEntity where T : System.Enum
|
||||
{
|
||||
T Variant { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user