mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-01 05:15:33 +00:00
2995f8b99f
- various gui-work - begun binding the GUI into Monster script - updated to latest Monster source (0.11 alpha) git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@87 ea6a568a-9f4f-0410-981a-c910a81bb256
17 lines
422 B
Text
17 lines
422 B
Text
/*
|
|
NOTE: This file is not used - it is here just for reference. The
|
|
real module is defined internally in io.d.
|
|
*/
|
|
|
|
module io;
|
|
|
|
// Write to console, with or without a newline
|
|
native write(char[][] args...);
|
|
native writeln(char[][] args...);
|
|
|
|
// Automatically inserts spaces between arguments
|
|
native writes(char[][] args...);
|
|
native writelns(char[][] args...);
|
|
|
|
// Identical to writelns
|
|
native print(char[][] args...);
|