Files
dl/third/angelscript/samples/game/bin/shared.as
T
2026-09-16 14:07:40 +08:00

7 lines
184 B
ActionScript 3
Vendored

// 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;
}