mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
11 lines
198 B
R
11 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;
|
|
|