This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| forwardBarButtonItem_ = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemPlay target:self action:@selector(goForward:)]; | |
| // back button needs more treatment... | |
| UIGraphicsBeginImageContextWithOptions(CGSizeMake(27, 22), NO, 0.0); | |
| CGContextRef context = UIGraphicsGetCurrentContext(); | |
| CGContextSetFillColor(context, CGColorGetComponents([UIColor blackColor].CGColor)); | |
| CGContextBeginPath(context); | |
| CGContextMoveToPoint(context, 8.0f, 13.0f); | |
| CGContextAddLineToPoint(context, 24.0f, 4.0f); | |
| CGContextAddLineToPoint(context, 24.0f, 22.0f); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // DTAsyncFileDeleter.m | |
| // DTFoundation | |
| // | |
| // Created by Oliver Drobnik on 2/10/12. | |
| // Copyright (c) 2012 Cocoanetics. All rights reserved. | |
| // | |
| #import "DTAsyncFileDeleter.h" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Fire = class() | |
| -- Towers versus Zombies by @juaxix | |
| -- LGPL - 11/2011 | |
| -- http://videojuegos.ser3d.es | |
| -- it is a pleasure to gift this to the world | |
| -- thanks from heart to all the 2lifesleft team | |
| function Fire:init(attackpower,position,model) | |
| self.attackpower = attackpower | |
| self.position = position | |
| self.parent = model |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no;" /> | |
| <meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
| <script type="text/javascript" charset="utf-8" src="phonegap-1.0.0.js"></script> | |
| <script type="text/javascript" charset="utf-8"> | |
| function onBodyLoad() { |
NewerOlder