pub type PlayerAddSoundFromFileResult = Result<i64, i32>;
enum PlayerAddSoundFromFileResult { Ok(i64), Err(i32), }
Contains the success value
Contains the error value