Skip to content
Alan Jefferson edited this page Jan 23, 2020 · 2 revisions

Touch on the cost/benefit of using..

namespace System {
  void MyMember();
}

In favour of..

class MySystem {
  void my_member();
};

And why registries make for good singletons.

Also touch on the advantages of keeping state in components rather than instances of classes.