mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-14 23:56:36 +08:00
Fix TestClass init mistake
This commit is contained in:
@ -118,7 +118,7 @@ namespace UnityExplorer.Tests
|
|||||||
|
|
||||||
ExplorerCore.Log($"5: Big list");
|
ExplorerCore.Log($"5: Big list");
|
||||||
for (int i = 0; i < ABigList.Capacity; i++)
|
for (int i = 0; i < ABigList.Capacity; i++)
|
||||||
ABigList[i] = (short)UnityEngine.Random.Range(0, short.MaxValue);
|
ABigList.Add((short)UnityEngine.Random.Range(0, short.MaxValue));
|
||||||
|
|
||||||
ExplorerCore.Log("Finished TestClass Init_Mono");
|
ExplorerCore.Log("Finished TestClass Init_Mono");
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user