1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 21:49:56 +00:00
openmw-tes3mp/old_d_version/monster/modules/io.mn
2009-12-19 21:31:22 +00:00

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...);