OpenSimBirds/Module/BirdsModule/FlowEntry.cs

26 lines
433 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Flocking
{
class FlowEntry
{
public float X = 0;
public float Y = 0;
public float Z = 0;
public float Value = 0;
public FlowEntry(float x, float y, float z, float value)
{
X = x;
Y = y;
Z = z;
Value = value;
}
}
}