adcom1: enum types finished

This commit is contained in:
Max Cherry
2018-12-27 14:39:52 +02:00
parent 7c7a15f779
commit 2d43ec9beb
7 changed files with 86 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
package adcom
// PlaybackMethod represents media playback methods.
type PlaybackMethod int
// Media playback methods.
const (
PlaybackPageLoadSoundOn PlaybackMethod = 1 // Initiates on Page Load with Sound On
PlaybackPageLoadSoundOff PlaybackMethod = 2 // Initiates on Page Load with Sound Off by Default
PlaybackClickSoundOn PlaybackMethod = 3 // Initiates on Click with Sound On
PlaybackMouseOverSoundOn PlaybackMethod = 4 // Initiates on Mouse-Over with Sound On
PlaybackViewportSoundOn PlaybackMethod = 5 // Initiates on Entering Viewport with Sound On
PlaybackViewportSoundOff PlaybackMethod = 6 // Initiates on Entering Viewport with Sound Off by Default
)