9 lines
102 B
C#
9 lines
102 B
C#
namespace Sand.Core;
|
|
|
|
public enum ParticleKind : byte
|
|
{
|
|
Solid = 1,
|
|
Liquid = 2,
|
|
Gas = 3,
|
|
}
|