16 lines
208 B
C#
16 lines
208 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace Lemon.GenericLib.Generics
|
||
|
{
|
||
|
|
||
|
public class GridHelper<T>
|
||
|
{
|
||
|
private Grid<T> grid;
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|