Xonotic QuakeC
The free, fast arena FPS with crisp movement and a wide array of weapons
image.qc
Go to the documentation of this file.
1#include "image.qh"
2
3entity makeXonoticImage(string theImage, float theAspect)
4{
6 me.configureXonoticImage(me, theImage, theAspect);
7 return me;
8}
9void XonoticImage_configureXonoticImage(entity me, string theImage, float theAspect)
10{
11 me.configureImage(me, theImage);
12 me.forcedAspect = theAspect;
13}
var entity(vector mins, vector maxs,.entity tofield) findbox_tofield_OrFallback
#define NEW(cname,...)
Definition oo.qh:117
entity makeXonoticImage(string theImage, float theAspect)
Definition image.qc:3
void XonoticImage_configureXonoticImage(entity me, string theImage, float theAspect)
Definition image.qc:9