| 1234567891011121314 |
- using Foundation;
- using UIKit;
- namespace SpriteEffects.iOS
- {
- public class Application
- {
- // This is the main entry point of the application.
- static void Main(string[] args)
- {
- UIApplication.Main(args, null, typeof(AppDelegate));
- }
- }
- }
|