lpw
2024-06-24 96fe7669fe8da0110590467e2e95ad88c0149112
commit | author | age
96fe76 1 //
L 2 //  GADMEnums.h
3 //  Google Mobile Ads SDK
4 //
5 //  Copyright 2011 Google. All rights reserved.
6 //
7
8 #import <Foundation/Foundation.h>
9
10 /// These are the types of animation we employ for transitions between two mediated ads.
11 typedef NS_ENUM(NSInteger, GADMBannerAnimationType) {
12   GADMBannerAnimationTypeNone = 0,            ///< No animation.
13   GADMBannerAnimationTypeFlipFromLeft = 1,    ///< Flip from left.
14   GADMBannerAnimationTypeFlipFromRight = 2,   ///< Flip from right.
15   GADMBannerAnimationTypeCurlUp = 3,          ///< Curl up.
16   GADMBannerAnimationTypeCurlDown = 4,        ///< Curl down.
17   GADMBannerAnimationTypeSlideFromLeft = 5,   ///< Slide from left.
18   GADMBannerAnimationTypeSlideFromRight = 6,  ///< Slide from right.
19   GADMBannerAnimationTypeFadeIn = 7,          ///< Fade in.
20   GADMBannerAnimationTypeRandom = 8,          ///< Random animation.
21 };