16 lines
211 B
C#
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;
|
|||
|
}
|
|||
|
}
|