Ardena Map Unit Test

mail@pastecode.io avatar
unknown
csharp
3 years ago
332 B
1
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);
        }
    }
}