AlicizaX/Client/Assets/NewBehaviourScript.cs

19 lines
376 B
C#
Raw Normal View History

2026-03-26 16:15:18 +08:00
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()
{
}
}