10 lines
187 B
C#
10 lines
187 B
C#
namespace Sand.Core;
|
|
|
|
internal readonly record struct ToolProfile(
|
|
string Id,
|
|
int RadiusCells,
|
|
float Strength,
|
|
float Falloff,
|
|
float Turbulence,
|
|
string[] Affects);
|