1 /** 2 * Module for location handling. 3 * 4 * Authors: 5 * Jacob Jensen 6 * License: 7 * https://github.com/PoisonEngine/poison-ui/blob/master/LICENSE 8 */ 9 module poison.core.location; 10 11 /// Enumeration of locations. 12 enum Location { 13 /// North west. 14 northWest, 15 /// North. 16 north, 17 /// North east. 18 northEast, 19 /// East. 20 east, 21 /// South east. 22 southEast, 23 /// South. 24 south, 25 /// South west. 26 southWest, 27 /// West. 28 west, 29 /// Center. 30 center 31 }