mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-26 15:27:59 +01:00
17 lines
301 B
C#
17 lines
301 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace Fie.Object
|
||
|
{
|
||
|
public class FieInputControllerBase : MonoBehaviour
|
||
|
{
|
||
|
public FieGameCharacter _ownerCharacter;
|
||
|
|
||
|
public FieGameCharacter ownerCharacter => _ownerCharacter;
|
||
|
|
||
|
public void SetOwner(FieGameCharacter character)
|
||
|
{
|
||
|
_ownerCharacter = character;
|
||
|
}
|
||
|
}
|
||
|
}
|