~ubuntu-branches/ubuntu/wily/pacman/wily

« back to all changes in this revision

Viewing changes to direc.h

  • Committer: Bazaar Package Importer
  • Author(s): Peter Joseph
  • Date: 2001-07-16 00:40:44 UTC
  • Revision ID: james.westby@ubuntu.com-20010716004044-oezvmjnpidekt21n
Tags: upstream-10
ImportĀ upstreamĀ versionĀ 10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __direc_h_
 
2
#define __direc_h_
 
3
 
 
4
//defines possible directions
 
5
typedef enum {up,down,left,right,none,still} direction;
 
6
 
 
7
//get next coordinates with a certain direction
 
8
void next(int*,int*,direction,int,int);
 
9
 
 
10
#endif