AlicizaX/Client/Assets/NewBehaviourScript.cs
2026-03-26 17:54:01 +08:00

19 lines
376 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()
{
}
}