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

namespace MyCollections.DesignPatterns.Visitor
{
    public interface IVisitable
    {
        public void Accept(IVisitor visitor);
    }
}