This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| public class AudioClipType | |
| { | |
| static public List<AudioClipType> allAudioClipTypes = new List<AudioClipType>(); | |
| static public AudioClipType SnakeEat = new AudioClipType("snake_eat","wav",1.0f); | |
| static public AudioClipType UIPress = new AudioClipType("ui_press","wav",1.0f); | |
| static public AudioClipType Explosion = new AudioClipType("explosion","wav",1.0f); |