param.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* $Id$
  2. * MegaZeux
  3. *
  4. * Copyright (C) 1996 Greg Janson
  5. * Copyright (C) 1998 Matthew D. Williams - dbwilli@scsn.net
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. */
  21. /* Declarations for PARAM.CPP */
  22. #ifndef __PARAM_H
  23. #define __PARAM_H
  24. extern int def_params[128];
  25. int edit_param(unsigned char id,int param);
  26. //(internal) "p"arameter "e"dit functions
  27. int pe_chest(int param);
  28. int pe_health(int param);
  29. int pe_ring(int param);
  30. int pe_bomb(int param);
  31. int pe_lit_bomb(int param);
  32. int pe_explosion(int param);
  33. int pe_door(int param);
  34. int pe_gate(int param);
  35. int pe_transport(int param);
  36. int pe_pouch(int param);
  37. int pe_pusher(int param);
  38. int pe_lazer_gun(int param);
  39. int pe_bullet(int param);
  40. int pe_ricochet_panel(int param);
  41. int pe_mine(int param);
  42. int pe_snake(int param);
  43. int pe_eye(int param);
  44. int pe_thief(int param);
  45. int pe_slime_blob(int param);
  46. int pe_runner(int param);
  47. int pe_ghost(int param);
  48. int pe_dragon(int param);
  49. int pe_fish(int param);
  50. int pe_shark(int param);
  51. int pe_spider(int param);
  52. int pe_goblin(int param);
  53. int pe_bullet_gun(int param);
  54. int pe_bear(int param);
  55. int pe_bear_cub(int param);
  56. int pe_missile_gun(int param);
  57. int pe_sensor(int param);
  58. #endif