code.witches.io/go/sdl2@v0.1.1/sensor.go (about)

     1  package sdl
     2  
     3  import (
     4  	"math"
     5  )
     6  
     7  type SensorID int32
     8  
     9  type SensorType uint32
    10  
    11  const (
    12  	SensorUnknown SensorType = iota
    13  	SensorAccelerometer
    14  	SensorGyroscope
    15  	SensorInvalid SensorType = math.MaxUint32
    16  )