Advertisement
DCSquid

Node

Mar 25th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.15 KB | None | 0 0
  1.  
  2. using UnityEngine;
  3. using System.Collections.Generic;
  4. using System;
  5.  
  6. public interface Node{
  7.     List<Node> neighbours();
  8.     Double weight(Node n);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement