Example #1
0
        public AssetsSystem(Contexts context)
            : base(context.game)
        {
            _context = context;

            _controllerPoolingService = context.game.services.ProvideControllerPoolingService();
        }
Example #2
0
        public DestroySystem(Contexts context)
        {
            _destroyGroup = context.game.GetGroup(GameMatcher.Destroy);

            _controllerPoolingService = context.game.services.ProvideControllerPoolingService();
        }