Ardena Map Unit Test
unknown
csharp
3 years ago
332 B
3
Indexable
using System.Collections; using System.Collections.Generic; using NUnit.Framework; using UnityEngine; using UnityEngine.TestTools; public class MapTest { [Test] public void MapIsActive() { if (Input.GetKeyDown(KeyCode.M)) { Assert.IsTrue(Map.isMapActive); } } }
Editor is loading...