Richard Ellingworth / Mbed 2 deprecated RobotRic

Dependencies:   25LCxxx_SPI CommonTypes Gameduino mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers SpriteGroup.h Source File

SpriteGroup.h

00001 /*
00002  * SOURCE FILE : SpriteGroup.h
00003  *
00004  * Enumeration of the two groups of sprites.
00005  * Mainly of use for sprite collision detection.
00006  *
00007  */
00008 
00009 #ifndef SpriteGroupIncluded
00010   
00011   #define SpriteGroupIncluded
00012 
00013   enum SpriteGroup {
00014     GoodGuy = 0,        // J collision class
00015     BadGuy = 1,         // K collision class
00016   };
00017   
00018 #endif
00019 
00020 /* END of SpriteGroup.h */
00021