mirror of
https://github.com/Bragin-Stepan/project-entity.git
synced 2026-03-02 22:31:10 +00:00
13 lines
370 B
C#
13 lines
370 B
C#
using _Project.Develop.Runtime.Utils.InputManagement.Inputs;
|
|
|
|
namespace _Project.Develop.Runtime.Utils.InputManagement
|
|
{
|
|
public class InputFactory
|
|
{
|
|
private UserInputAction _userInput = new();
|
|
|
|
public PlayerInput CreatePlayerInput() => new(_userInput.Player);
|
|
|
|
public UIInput CreateUIInput() => new(_userInput.UI);
|
|
}
|
|
} |