Hi!
Ive created a little game(Kai-Bong):
http://www.pocketmatrix.com/forums/view ... 9&start=15
Now, some people would like a replay function.
What's the best way to record the mouse/pen- movements?
I had this in my mind:
a C-struct:
t=struct{
TIME t
POINT p
}
And onmousemove a new variable of this struct
in an linked list.
Is that a good idea?