17 lines
340 B
C
Executable File
17 lines
340 B
C
Executable File
//
|
|
// KSAdShowDirection.h
|
|
// Pods
|
|
//
|
|
// Created by zhangchuntao on 2021/4/2.
|
|
//
|
|
|
|
#ifndef KSAdShowDirection_h
|
|
#define KSAdShowDirection_h
|
|
|
|
typedef NS_ENUM(NSInteger, KSAdShowDirection) {
|
|
KSAdShowDirection_Vertical = 0, //竖屏
|
|
KSAdShowDirection_Horizontal = 1, //横屏
|
|
};
|
|
|
|
#endif /* KSAdShowDirection_h */
|