sourcecodes? [Archive] - C Board

PDA

View Full Version : sourcecodes?


pode
03-08-2002, 02:31 PM
any of u non cheap guys have allegro sourcecodes to share?
if u do please attach some for me.

i just started with allegro all i can is the "shape" functions.

i would like to know how to make things move!

thanx!

compjinx
03-08-2002, 06:59 PM
int LP;
for(LP=0;LP<500;LP++)
{
putpixel(buffer, LP, LP, makecol(255,0,0));
vsync();
showBuffer ();
}

hows this for movement?

Justin W
03-08-2002, 08:55 PM
http://echellon.hybd.net/

http://www.allegro.cc/

http://www.cprogramming.com/cboard/showthread.php?s=&threadid=10521

pode
03-10-2002, 03:15 PM
thanx m8's!