mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 16:37:30 +00:00
12 lines
198 B
R
12 lines
198 B
R
|
.int blah;
|
||
|
.void () think;
|
||
|
.SEL thinkMethod = think;
|
||
|
|
||
|
void foo (entity e)
|
||
|
{
|
||
|
*(SEL *)&e.think = @selector(foo:);
|
||
|
e.thinkMethod = @selector(foo:);
|
||
|
}
|
||
|
void __obj_exec_class (obj_module_t *msg) = #0;
|
||
|
|