questzdoom/Projects/Android/jni/gzdoom-g3.3mgw_mobile/wadsrc/static/zscript/sounddata.zs
Simon 31386f35b5 Initial commit..
doesn't even build at this stage..
2020-02-22 16:10:48 +00:00

20 lines
429 B
Text

class SeqNode native
{
enum ESeqType
{
PLATFORM,
DOOR,
ENVIRONMENT,
NUMSEQTYPES,
NOTRANS
};
native bool AreModesSameID(int sequence, int type, int mode1);
native bool AreModesSame(Name name, int mode1);
native Name GetSequenceName();
native void AddChoice (int seqnum, int type);
native static Name GetSequenceSlot (int sequence, int type);
native static void MarkPrecacheSounds(int sequence, int type);
}