Subversion Repositories Games.Rick Dangerous

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /*
  2.  * src/control.h
  3.  *
  4.  * Copyright (C) 1998-2002 BigOrno (bigorno@bigorno.net). All rights reserved.
  5.  *
  6.  * The use and distribution terms for this software are contained in the file
  7.  * named README, which can be found in the root of this distribution. By
  8.  * using this software in any fashion, you are agreeing to be bound by the
  9.  * terms of this license.
  10.  *
  11.  * You must not remove this notice, or any other, from this software.
  12.  */
  13.  
  14. #ifndef _CONTROL_H
  15. #define _CONTROL_H
  16.  
  17. #define CONTROL_UP 0x08
  18. #define CONTROL_DOWN 0x04
  19. #define CONTROL_LEFT 0x02
  20. #define CONTROL_RIGHT 0x01
  21. #define CONTROL_PAUSE 0x80
  22. #define CONTROL_END 0x40
  23. #define CONTROL_EXIT 0x20
  24. #define CONTROL_FIRE 0x10
  25.  
  26. extern U8 control_status;
  27. extern U8 control_last;
  28.  
  29. #endif
  30.