/* DE1: $Id: con_action.h 2552 2005-12-19 04:29:53Z danij $ * Copyright (C) 2003, 2004 Jaakko Keränen * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not: http://www.opensource.org/ */ /* * con_action.h: Action Commands (Player Controls) */ #ifndef __DOOMSDAY_CONSOLE_ACTION_H__ #define __DOOMSDAY_CONSOLE_ACTION_H__ void Con_DefineActions(action_t *acts); void Con_ClearActions(void); // The command begins with a '+' or a '-'. // Returns true if the action was changed successfully. int Con_ActionCommand(char *cmd, boolean has_prefix); D_CMD(ListActs); #endif