From 6b2c7f2a04ea1dafc1cc39fb79c34835a74f7442 Mon Sep 17 00:00:00 2001 From: Christopher Latza Date: Wed, 10 Jun 2020 22:49:04 +0200 Subject: [PATCH] add pixelInfo --- src/PixelInfo.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/PixelInfo.cs diff --git a/src/PixelInfo.cs b/src/PixelInfo.cs new file mode 100644 index 0000000..7e0d32d --- /dev/null +++ b/src/PixelInfo.cs @@ -0,0 +1,20 @@ +using OpenMetaverse; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace OpenSim.Modules.PathFinding +{ + class PixelInfo + { + public Vector2 Position = new Vector2(0, 0); + public int Counter = 0; + + public PixelInfo(Vector2 position) + { + Position = position; + } + } +}