Angelscript/samples/game/bin/shared.as

7 lines
184 B
ActionScript
Raw Normal View History

2021-04-12 18:25:02 +00:00
// The 'shared' keyword make it possible to send
// objects of the type between different modules.
shared class CMessage
{
CMessage(const string &in t) { txt = t; }
string txt;
}