12 lines
215 B
C#
12 lines
215 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Passer.Pawn {
|
|
|
|
public interface IHumanoidPossessions {
|
|
|
|
void AddToPossessions(Possessable newPossession);
|
|
|
|
}
|
|
} |