
These sounds change depending on what kind of block you're walking in. Still to come: sound effects for mining and placing blocks
17 lines
227 B
C#
17 lines
227 B
C#
using System;
|
|
|
|
namespace TrueCraft.API.Logic
|
|
{
|
|
public enum SoundEffectClass
|
|
{
|
|
None,
|
|
Cloth,
|
|
Grass,
|
|
Gravel,
|
|
Sand,
|
|
Snow,
|
|
Stone,
|
|
Wood,
|
|
Glass
|
|
}
|
|
} |