// // ToastManager.h // Unity-iPhone // // Created by zhl on 2022/12/7. // #import NS_ASSUME_NONNULL_BEGIN @interface ToastManager : NSObject + (void)showToastWithMessage:(NSString*)message; + (void)showToastWithImage:(NSString*)message image:(UIImage *)image; @end NS_ASSUME_NONNULL_END