using System.Collections;
|
using System.Collections.Generic;
|
using UnityEngine;
|
using Snxxz.UI;
|
|
public class TestMonobehaviour : MonoBehaviour
|
{
|
|
// Use this for initialization
|
void Start()
|
{
|
CSharpCallLua.Init();
|
}
|
|
// Update is called once per frame
|
void Update()
|
{
|
if (Input.GetKeyDown(KeyCode.F))
|
{
|
WindowCenter.Instance.Open("AbyssWin");
|
}
|
|
if (Input.GetKeyDown(KeyCode.G))
|
{
|
WindowCenter.Instance.Open("TestWin");
|
}
|
}
|
|
|
}
|