예제 #1
0
파일: hge.go 프로젝트: losinggeneration/hge
func (h *HGE) Effect_Play(eff *sound.Effect) sound.Channel {
	return eff.Play()
}
예제 #2
0
파일: hge.go 프로젝트: losinggeneration/hge
func (h *HGE) Effect_PlayEx(eff *sound.Effect, a ...interface{}) sound.Channel {
	return eff.PlayEx(a...)
}
예제 #3
0
파일: hge.go 프로젝트: losinggeneration/hge
func (h *HGE) Effect_Free(eff *sound.Effect) {
	eff.Free()
}