15 lines
352 B
C#
15 lines
352 B
C#
using Verse;
|
|
|
|
namespace ArachnaeSwarm
|
|
{
|
|
/// <summary>
|
|
/// 可由幼虫激活的孵化建筑接口
|
|
/// Building_Ootheca 和 Building_EquipmentOotheca 都实现此接口
|
|
/// </summary>
|
|
public interface ILarvaActivatable
|
|
{
|
|
void NotifyLarvaArrived(Pawn larva);
|
|
void NotifyLarvaOperationComplete(Pawn larva);
|
|
}
|
|
}
|