project_files/HedgewarsMobile/Classes/HelpPageLobbyViewController.m
author nemo
Thu, 02 Sep 2010 19:22:37 -0400
changeset 3819 ba2926231115
parent 3791 98072b3871c1
permissions -rw-r--r--
Disable sine gun in all weapon sets, slap a beta on the name and incomplete in description. This is to reassure sheepluva who fears his WIP making it prominently into a release.

    //
//  HelpPageLobbyViewController.m
//  Hedgewars
//
//  Created by Vittorio on 30/08/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import "HelpPageLobbyViewController.h"
#import "CommodityFunctions.h"

@implementation HelpPageLobbyViewController


-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation {
    return rotationManager(interfaceOrientation);
}

-(void) didReceiveMemoryWarning {
    // Releases the view if it doesn't have a superview.
    [super didReceiveMemoryWarning];
    // Release any cached data, images, etc that aren't in use.
}

-(void) viewDidUnload {
    [super viewDidUnload];
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
}

-(void) dealloc {
    [super dealloc];
}

-(IBAction) dismiss {
    [UIView beginAnimations:@"helpingame" context:NULL];
    self.view.alpha = 0;
    [UIView commitAnimations];
    [self.view performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:1];
}

@end