Newer
Older
TheVengeance-Project-IADE-Unity2D / Assets / Scripts / Interfaces / IVisitor.cs
@Rackday Rackday on 29 Oct 248 bytes Major Update
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace MyCollections.DesignPatterns.Visitor
{
    public interface IVisitor
    {
        public void Visit<T>(T visitable) where T : Component, IVisitable;
    }
}