Пример #1
0
void XonoticCommandButton_configureXonoticCommandButton(entity me, string theText, vector theColor, string theCommand, float theFlags)
{
	me.configureXonoticButton(me, theText, theColor);
	me.onClickCommand = theCommand;
	me.flags = theFlags;
	me.onClick = XonoticCommandButton_Click;
	me.onClickEntity = me;
}
Пример #2
0
void XonoticBigButton_configureXonoticBigButton(entity me, string theText, vector theColor)
{
	me.configureXonoticButton(me, theText, theColor);
}