mirror of
https://github.com/eliasstepanik/FluidSimulation.git
synced 2026-01-11 13:38:28 +00:00
10 lines
197 B
C#
10 lines
197 B
C#
namespace PixelEngine;
|
|
|
|
public class Velocity
|
|
{
|
|
public int x { get; set; }
|
|
public int y { get; set; }
|
|
public float amountX { get; set; }
|
|
public float amountY { get; set; }
|
|
|
|
} |