25 lines
298 B
C#
25 lines
298 B
C#
using UnityEngine;
|
|
|
|
namespace Darkmatter.Core
|
|
{
|
|
public enum ZombieType
|
|
{
|
|
Fat,
|
|
slim
|
|
}
|
|
|
|
public enum AudioId
|
|
{
|
|
Music_Gameplay,
|
|
Music_Menu,
|
|
|
|
Gun_Fire,
|
|
Gun_Reload,
|
|
|
|
Zombie_Growl,
|
|
Zombie_Death,
|
|
|
|
UI_Click
|
|
}
|
|
}
|