// SDLCompassDirection.h // #import "SDLEnum.h" /** * The list of potential compass directions. * * @since SDL 2.0 */ typedef SDLEnum SDLCompassDirection SDL_SWIFT_ENUM; /** * @abstract Direction North */ extern SDLCompassDirection const SDLCompassDirectionNorth; /** * @abstract Direction Northwest */ extern SDLCompassDirection const SDLCompassDirectionNorthwest; /** * @abstract Direction West */ extern SDLCompassDirection const SDLCompassDirectionWest; /** * @abstract Direction Southwest */ extern SDLCompassDirection const SDLCompassDirectionSouthwest; /** * @abstract Direction South */ extern SDLCompassDirection const SDLCompassDirectionSouth; /** * @abstract Direction Southeast */ extern SDLCompassDirection const SDLCompassDirectionSoutheast; /** * @abstract Direction East */ extern SDLCompassDirection const SDLCompassDirectionEast; /** * @abstract Direction Northeast */ extern SDLCompassDirection const SDLCompassDirectionNortheast;