mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 18:35:20 +00:00
9 lines
193 B
Plaintext
9 lines
193 B
Plaintext
|
// This is the base class of all OpenMW Monster classes.
|
||
|
class Object;
|
||
|
|
||
|
// Sleeps a given amount of time
|
||
|
idle sleep(float seconds);
|
||
|
|
||
|
// Print a message to screen
|
||
|
native print(char[][] msg...);
|