CapersProject/Packages/com.distantlands.cozy.core/Runtime/Utility/ICozyEcosystem.cs

13 lines
214 B
C#
Raw Normal View History

2024-06-03 18:26:03 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace DistantLands.Cozy
{
public interface ICozyEcosystem
{
public CozyEcosystem Ecosystem { get; set; }
}
}