Files
project-entity/Assets/_Project/Develop/Runtime/Utilities/InputManagement/InputFactory.cs
Bragin Stepan 1174be2d43 update
2026-02-19 23:19:33 +05:00

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);
}
}