If you actually think about what it would mean then you realize that it's not reasonable.
Client 1:
local tb = {a = 3}
_SuperG.Data = tb
Then, at the same time:
Client 2
_SupreG.Data.a = 8
Client 3:
_SuperG.Data.a = 5
What should happen? And that's just one example.
When you get down to the actual details of it, you realize that such a table would actually be totally useless for anything moderately complex, or at least it would only be as useful as the existing methods of communication, because you wouldn't be able to do anything too non-obvious with it without running into concurrency issues and what not.
|