Zeplin.Sound.Sound C# (CSharp) Method

Sound() public method

Constructs a Sound object from the specified resource string
public Sound ( string resourceName ) : System
resourceName string The name of a SoundEffect resource
return System
        public Sound(string resourceName)
        {
            soundEffect = ZeplinGame.ContentManager.Load<SoundEffect>(resourceName);
        }