AlicizaX/Client/Assets/NewBehaviourScript.cs
2026-03-26 16:15:18 +08:00

20 lines
377 B
C#

using System.Collections;
using System.Collections.Generic;
using AlicizaX;
using UnityEngine;
public class NewBehaviourScript : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
Debug.Log(AppServices.Require<InputBindingManager>().actions.name);
}
// Update is called once per frame
void Update()
{
}
}