13 lines
226 B
C#
13 lines
226 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace DistantLands.Cozy
|
|
{
|
|
public interface ICozyEcosystem
|
|
{
|
|
|
|
public CozyEcosystem Ecosystem { get; set; }
|
|
|
|
}
|
|
} |