forked from mirror/openmw-tes3mp
9 lines
193 B
Text
9 lines
193 B
Text
|
// 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...);
|