You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
279 B

package pavelsobolev.kotogl.Helpers
/**
* enumeration describes the possible direction of tilts
* from device's accelerometer
*/
enum class TiltDirections
{
UP, DOWN, LEFT, RIGHT, UNKNOWN
//UNKNOWN means that there is not now strong tilt to some specific direction
}