mirror of
https://github.com/eliasstepanik/FluidSimulation.git
synced 2026-01-10 21:18:29 +00:00
8 lines
150 B
C#
8 lines
150 B
C#
namespace PixelEngine;
|
|
|
|
public class Density
|
|
{
|
|
public int x { get; set; }
|
|
public int y{ get; set; }
|
|
public float amount { get; set; }
|
|
} |