Ardena Map Unit Test
unknown
csharp
4 years ago
332 B
5
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...