tModLoader v0.11.8.9
A mod to make and play Terraria mods
SoundType.cs
Go to the documentation of this file.
1namespace Terraria.ModLoader
2{
3 /*
4 * in Vanilla SoundID.cs
5 public const int Item = 2;
6 public const int NPCHit = 3;
7 public const int NPCKilled = 4;
8 */
12 public enum SoundType
13 {
14 Item = 2,
15 NPCHit = 3,
16 NPCKilled = 4,
17 Custom = 50,
18 Music = 51
19 }
20}
@ Custom
Will not appear by default. Useful as prefixes for your own damage type.
SoundType
This is an enum of the types of sound you can add to the game. This is used for determining whether a...
Definition: SoundType.cs:13