19 lines
348 B
C#
19 lines
348 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace MeadowGames.UINodeConnect4.Extra
|
|
{
|
|
public class HandlerRenderer : GraphicRenderer.UICLineRenderer
|
|
{
|
|
new void Awake()
|
|
{
|
|
base.Awake();
|
|
}
|
|
|
|
new void Start()
|
|
{
|
|
base.Start();
|
|
}
|
|
}
|
|
} |