add pixelInfo

master
Christopher Latza 2020-06-10 22:49:04 +02:00
parent e7e0d0013f
commit 6b2c7f2a04
1 changed files with 20 additions and 0 deletions

20
src/PixelInfo.cs Normal file
View File

@ -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;
}
}
}