qzdoom-gpl/wadsrc/static/zscript/base.txt
Christoph Oelckers f8ccda2dc8 - scriptified A_Mushroom to test something a bit more complex.
- fixed: FxMinusSign trashed local variables that were used with negation.
- fixed: FxConditional only handled ints and floats, but not pointers and strings.
- fixed: A 'no states in non-actors' error was triggered, even for classes without any states.
2016-10-30 14:00:11 +01:00

8 lines
No EOL
94 B
Text

class Object native
{
/*virtual*/ native void Destroy();
}
class Thinker : Object native
{
}