Files
cppk-ar/Assets/Plugins/Easy performant outline/Demo/Scripts/ICollectable.cs
T

11 lines
202 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace EPOOutline.Demo
{
public interface ICollectable
{
void Collect(GameObject collector);
}
}