示例#1
0
 public GameCore(ILogger logger, IGameModuleCollection modules)
 {
     _logger = logger;
     Daos    = new DefaultGameDaoCollection();
     Modules = modules;
     Views   = new DefaultGameViewCollection();
 }
示例#2
0
 public ProxyModuleCollection(IGameModuleCollection collection, IProxyFactory factory)
 {
     _wrapped = collection;
     _factory = factory;
 }