mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-22 12:11:25 +00:00
Add details on how to call static Object methods
This commit is contained in:
parent
f4328f8187
commit
8817ed865c
1 changed files with 2 additions and 0 deletions
|
@ -673,6 +673,8 @@ class Object native
|
|||
virtual virtualscope void OnDestroy() {}
|
||||
//
|
||||
//
|
||||
// The static methods below cannot be called using Object.method(); For example, you don't call
|
||||
// abs(x) using Object.abs(x); Just use abs(x);
|
||||
// clearscope bool IsAbstract(); // Intrinsic - Query whether or not the class is abstract
|
||||
// clearscope Object GetParentClass(); // Intrinsic - Get the parent class of this object
|
||||
// clearscope Name GetClassName(); // Intrinsic - Get the name of this object's class
|
||||
|
|
Loading…
Reference in a new issue