mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
73e45cc8ee
dealloc -> release This is an imperfect revision of history.
34 lines
503 B
R
34 lines
503 B
R
#include "Frame.h"
|
|
#include "debug.h"
|
|
|
|
@implementation Frame : Object
|
|
- (id) initWithFile: (string) file duration: (float) time
|
|
{
|
|
self = [super init];
|
|
picture = [[QPic alloc] initName: file];
|
|
duration = time;
|
|
|
|
return self;
|
|
}
|
|
|
|
- (void) dealloc
|
|
{
|
|
[picture release];
|
|
[super dealloc];
|
|
}
|
|
|
|
- (Point) size
|
|
{
|
|
return [[Point alloc] initWithComponents :[picture width] :[picture height]];
|
|
}
|
|
|
|
- (float) duration
|
|
{
|
|
return duration;
|
|
}
|
|
|
|
- (void) draw: (integer) x :(integer) y
|
|
{
|
|
[picture draw :x :y];
|
|
}
|
|
@end
|