mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-16 09:21:12 +00:00
fca846272e
* Struct made up of binangle class units. * Create signed clone of binangle for use with look_ang and rotscrnang. * Append currently outgoing function names with `2` at the end to avoid conflict.
16 lines
526 B
C
16 lines
526 B
C
#pragma once
|
|
|
|
BEGIN_DUKE_NS
|
|
|
|
extern int myx, omyx, myxvel, myy, omyy, myyvel, myz, omyz, myzvel;
|
|
extern short globalskillsound;
|
|
extern short mycursectnum, myjumpingcounter;
|
|
extern binangle myang, omyang;
|
|
extern fixedhoriz myhoriz, omyhoriz, myhorizoff, omyhorizoff;
|
|
extern char myjumpingtoggle, myonground, myhardlanding,myreturntocenter;
|
|
extern int fakemovefifoplc;
|
|
extern int myxbak[MOVEFIFOSIZ], myybak[MOVEFIFOSIZ], myzbak[MOVEFIFOSIZ];
|
|
extern int myhorizbak[MOVEFIFOSIZ];
|
|
extern short myangbak[MOVEFIFOSIZ];
|
|
|
|
END_DUKE_NS
|