21 lines
451 B
Objective-C
21 lines
451 B
Objective-C
//
|
|
// XPHomeLittleGameProtocol.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/3/24.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol XPHomeLittleGameProtocol <NSObject>
|
|
|
|
- (void)getHomeLittleGameRoomListSuccess:(NSArray *)array state:(int)state;
|
|
- (void)getHomeLittleGameRoomListFail:(NSString *)message state:(int)state;
|
|
///匹配成功
|
|
- (void)quickMatchLittleGameRoomSuccess:(NSString *)uid;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|