1
0
Fork 0
Bildschirmflausch-LD41/Assets/Scripts/Generation/GenVertex.cs

14 lines
212 B
C#
Raw Normal View History

2018-04-22 13:51:56 +02:00
using System;
using UnityEngine;
public class GenVertex {
2018-04-22 13:51:56 +02:00
public GenRoom r;
public float value;
public GenVertex(GenRoom r) {
2018-04-22 13:51:56 +02:00
this.r = r;
value = float.PositiveInfinity;
2018-04-22 13:51:56 +02:00
}
}