mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
10 lines
129 B
R
10 lines
129 B
R
|
#include "gui/Rect.h"
|
||
|
|
||
|
void (integer x) foo;
|
||
|
|
||
|
void (float y) bar =
|
||
|
{
|
||
|
foo (y);
|
||
|
[[Rect alloc] initWithComponents:1 :2 :y :3];
|
||
|
};
|