11 lines
150 B
C#
11 lines
150 B
C#
namespace Sand.ChunkPrototype;
|
|
|
|
public enum PrototypeParticleType : byte
|
|
{
|
|
Empty = 0,
|
|
Sand = 1,
|
|
Water = 2,
|
|
Steam = 3,
|
|
Wall = 4,
|
|
}
|