forked from zxl/Frame
1
0
Fork 0
Frame/Assets/Scripts/Test2.cs

16 lines
211 B
C#

using System;
using UnityEngine;
namespace Game;
class Test2: MonoBehaviour
{
Test1 test1 = new Test1(1);
void Testm()
{
Span<int> items = [1, 2, 3];
Test? test = null;
}
}