mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-24 08:23:52 +00:00
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...);
|