OpenSimBirds/Module/BirdsModule/FlowEntry.cs

26 lines
433 B
C#
Raw Permalink Normal View History

2020-08-06 20:20:39 +00:00
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;
}
}
}