HumanoidControl_Free/Runtime/Sites/Scripts/IHumanoidPossessions.cs
Pascal Serrarens 17741d862a First commit
2022-01-12 10:50:57 +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);
}
}