-
Notifications
You must be signed in to change notification settings - Fork 166
Static
HungryForFood edited this page Jan 23, 2021
·
1 revision
Methods will be listed in alphabetical order using the following format:
Return | Method (arguments) | Description |
---|---|---|
type | SomeMethod(type arg1, opt type arg2, ...) | desc |
Where:
- type - Variable data type.
- SomeMethod - Method name.
- arg - Arguments.
- opt - If you see this in front of an argument, that argument is optional.
- desc - Short description on the method. Not present for every method, as most are self explanatory.
Static methods are invoked through a dot, as in Game.SomeMethod(<args>)
. When a dot is used the caller object is not implicitly provided as the first argument.