]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/image.qc
Merge branch 'master' into terencehill/translated_keys
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / image.qc
1 #include "image.qh"
2
3 entity makeXonoticImage(string theImage, float theAspect)
4 {
5         entity me;
6         me = NEW(XonoticImage);
7         me.configureXonoticImage(me, theImage, theAspect);
8         return me;
9 }
10 void XonoticImage_configureXonoticImage(entity me, string theImage, float theAspect)
11 {
12         me.configureImage(me, theImage);
13         me.forcedAspect = theAspect;
14 }