-
Notifications
You must be signed in to change notification settings - Fork 3
Home
Phil edited this page Jan 27, 2015
·
35 revisions
Welcome to the Vaser wiki!
exemple:
hello(container) -> [system(Portal) <-> system(portal)] -> hello(container)
send a message:
con.message = "transmitting a message via Vaser.";
system.SendContainer(link, con, 1, 1);
receive a message:
foreach (Packet_Recv pak in system.getPakets())
{
con.UnpackDataObject(pak, system);
Console.WriteLine(con.message);
}