add pixelInfo
parent
e7e0d0013f
commit
6b2c7f2a04
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue