mirror of
https://github.com/eliasstepanik/FluidSimulation.git
synced 2026-01-11 21:48:28 +00:00
9 lines
242 B
C#
9 lines
242 B
C#
namespace PixelEngine;
|
|
|
|
public class Config
|
|
{
|
|
public int Size { get; set; } = 128;
|
|
public int Scale { get; set; } = 7;
|
|
public string WindowTitle { get; set; } = "Fluid Simulation";
|
|
public int TargetFps { get; set; } = 60;
|
|
} |