Add Popcron.Gizmos license.

Made sure to add the MIT license to their folder.
This commit is contained in:
NotAKidoS 2022-09-14 08:34:44 -05:00
parent 29060f71c1
commit 7aaec9c512
10 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
using UnityEngine;
namespace Popcron
{
public class LineDrawer : Drawer
{
public LineDrawer()
{
}
public override int Draw(ref Vector3[] buffer, params object[] args)
{
buffer[0] = (Vector3)args[0];
buffer[1] = (Vector3)args[1];
return 2;
}
}
}