11 lines
146 B
C#
11 lines
146 B
C#
namespace Sand.Core;
|
|
|
|
public enum ParticleBehaviorKind : byte
|
|
{
|
|
None = 0,
|
|
Fire = 1,
|
|
BurningWood = 2,
|
|
Ember = 3,
|
|
Plasma = 4,
|
|
}
|