12 lines
268 B
Kotlin
12 lines
268 B
Kotlin
package ru.dbotthepony.kstarbound.world
|
|
|
|
import ru.dbotthepony.kvector.vector.Vector2d
|
|
|
|
enum class Direction(val normal: Vector2d) {
|
|
UP(Vector2d.POSITIVE_Y),
|
|
RIGHT(Vector2d.POSITIVE_X),
|
|
DOWN(Vector2d.NEGATIVE_Y),
|
|
LEFT(Vector2d.NEGATIVE_X),
|
|
NONE(Vector2d.ZERO);
|
|
}
|