OldBlueWater/BlueWater/Assets/Distant Lands/Cozy Weather/Contents/Scripts/Utility/ICozyEcosystem.cs

13 lines
214 B
C#
Raw Normal View History

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