This repository has been archived on 2022-06-27. You can view files and clone it, but cannot push or open issues or pull requests.
Xash3DArchive/vprogs/ents/funcs/func_button.c

14 lines
175 B
C

/*
FUNC_BUTTON();
Description;
Points func_button to the unified func_mover(); code.
*/
void() func_button =
{
func_mover();
pev->classname = "button";
};