mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 12:52:46 +00:00
it's "dealloc", not "free" (missed name changes from a while back)
This is an imperfect revision of history.
This commit is contained in:
parent
64cc8c60d2
commit
7b4edb2859
2 changed files with 1 additions and 3 deletions
|
@ -32,17 +32,16 @@
|
||||||
#define __ruamoko_Entity_h
|
#define __ruamoko_Entity_h
|
||||||
|
|
||||||
#include "Object.h"
|
#include "Object.h"
|
||||||
#include "entities.h"
|
|
||||||
|
|
||||||
@interface Entity: Object
|
@interface Entity: Object
|
||||||
{
|
{
|
||||||
@public
|
@public
|
||||||
entity ent;
|
entity ent;
|
||||||
|
integer own;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (id) init;
|
- (id) init;
|
||||||
- (id) initWithEntity: (entity) e;
|
- (id) initWithEntity: (entity) e;
|
||||||
- (void) free;
|
|
||||||
|
|
||||||
- (entity) ent;
|
- (entity) ent;
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
struct list_bucket_s [][] tail;
|
struct list_bucket_s [][] tail;
|
||||||
}
|
}
|
||||||
- (id) init;
|
- (id) init;
|
||||||
- (void) free;
|
|
||||||
- (id) getItemAt: (integer) index;
|
- (id) getItemAt: (integer) index;
|
||||||
- (id) head;
|
- (id) head;
|
||||||
- (id) tail;
|
- (id) tail;
|
||||||
|
|
Loading…
Reference in a new issue