Skip to content

Instantly share code, notes, and snippets.

View vilbeyli's full-sized avatar

Volkan Ilbeyli vilbeyli

View GitHub Profile
@Problematic
Problematic / Edge.cs
Created August 31, 2014 20:42
Node graph for Unity3D
using UnityEngine;
[System.Serializable]
public class Edge
{
public Edge()
{
}
public Edge(Node node, int cost)
{