Write function

The Write function is a method that prints like printf or cout with the difference that this method prints the characters one by one (auto typing).

First you need to create a variable of Event type:

rm::Event e;

And call the function.

e.Write();

The function takes 2 arguments: the first one is the text you want to print, and the second is the time (ms) between the characters that are printed , the higher is this value the longer will take writing the message.

Example:

e.Write("Hello World!" , 1);

Comments