mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-04-24 03:00:11 -04:00
17 lines
327 B
Objective-C
17 lines
327 B
Objective-C
//
|
|
// Badge.h
|
|
//
|
|
// Created by Simon Madine on 29/04/2010.
|
|
// Copyright 2010 The Angry Robot Zombie Factory.
|
|
// MIT licensed
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
#import "PhoneGapCommand.h"
|
|
@interface Badge : PhoneGapCommand {
|
|
}
|
|
- (void)setBadge:(NSMutableArray*)badgeNumber withDict:(NSMutableDictionary*)options;
|
|
@end
|