00001 /* 00002 * File: ball.h 00003 * Purpose: Bitmap of a beautiful green ball 00004 * Author: Peter Ivanov 00005 * Modified by: 00006 * Created: 2007-05-19 11:29:32 00007 * Last modify: 2007-10-03 21:25:33 ivanovp {Time-stamp} 00008 * Copyright: (C) Peter Ivanov, 2007 00009 * Licence: GPL 00010 */ 00016 #ifndef __INCLUDE_BALL_H 00017 #define __INCLUDE_BALL_H 00018 00019 #define BALL_WIDTH 20 00020 #define BALL_HEIGHT 20 00021 #define BALL_SIZE 600 00022 extern const unsigned char ball[BALL_SIZE]; 00023 00024 #endif // __INCLUDE_BALL_H
1.5.1