ZK_Framework/Assets/Scripts/Hotfix/Hello.cs

16 lines
248 B
C#
Raw Normal View History

2024-07-04 20:18:43 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Hello
{
public static void Run()
{
Debug.Log("Hello, HybridCLR");
}
public void AA()
{
Debug.Log("Hello, AA");
}
}