Newer
Older
TheVengeance-Project-IADE-Unity2D / Assets / Scripts / Interfaces / IVisitable.cs
@Rackday Rackday on 29 Oct 220 bytes Major Update
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace MyCollections.DesignPatterns.Visitor
  5. {
  6. public interface IVisitable
  7. {
  8. public void Accept(IVisitor visitor);
  9. }
  10. }