HumanoidControl_Free/Assets/Passer/Sites/Scripts/IHumanoidPossessions.cs
Pascal Serrarens de12c36220 First commit
2022-01-11 16:51:37 +01:00

12 lines
215 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Passer.Pawn {
public interface IHumanoidPossessions {
void AddToPossessions(Possessable newPossession);
}
}