mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-22 22:07:59 +01:00
13 lines
337 B
C#
13 lines
337 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;
|
|
}
|
|
}
|
|
}
|