v0.11.0.9

This commit is contained in:
Joonas Rikkonen
2020-12-09 16:34:16 +02:00
parent bbf06f0984
commit f433a7ba10
325 changed files with 13947 additions and 3652 deletions
@@ -135,7 +135,7 @@ namespace Voronoi2
public enum CellType
{
Solid, Empty, Edge, Path, Removed
Solid, Empty, Path, Removed
}
public class VoronoiCell
@@ -151,6 +151,11 @@ namespace Voronoi2
public Vector2 Translation;
public bool Island;
public bool IsDestructible;
public bool DoesDamage;
public Vector2 Center
{
get { return new Vector2((float)Site.Coord.X, (float)Site.Coord.Y) + Translation; }
@@ -204,8 +209,8 @@ namespace Voronoi2
public VoronoiCell Cell1, Cell2;
public bool IsSolid;
public bool OutsideLevel;
public bool NextToCave, NextToMainPath, NextToSidePath;
public Vector2 Center
{