Newer
Older
TheVengeance-Project-IADE-Unity2D / Assets / Scripts / Interfaces / IDisplayable.cs
@Rackday Rackday on 3 Sep 178 bytes Minor Update
using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;

public interface IDisplayable
{
    public abstract void Display(TextMeshPro tmp);
}