﻿using UnityEngine;

namespace GameCreator.Runtime.Common
{
    public interface IIcon
    {
        Texture2D Texture { get; }
    }   
}
