/* chara.h - Don Yang (uguu.org) 05/19/03 */ #ifndef CHARA_H__ #define CHARA_H__ #define REV_RESOLUTION 32 /* Tweak these to change quality */ #define CURVE_RESOLUTION 16 #define CURVE_X1 0.70 /* Tweak these to change shape */ #define CURVE_Y1 0.00 #define CURVE_X2 1.11 #define CURVE_Y2 0.15 #define CURVE_X3 0.87 #define CURVE_Y3 1.00 void DrawChara(int type, double position); void UninitChara(void); #endif