public Entity AddPaddle(Oultrox.EntitasPong.Entitas.Components.PaddleComponent.PaddleType newPaddleType)
        {
            var component = CreateComponent <Oultrox.EntitasPong.Entitas.Components.PaddleComponent>(ComponentIds.Paddle);

            component.paddleType = newPaddleType;
            return(AddComponent(ComponentIds.Paddle, component));
        }
        public Entity ReplacePaddle(Oultrox.EntitasPong.Entitas.Components.PaddleComponent.PaddleType newPaddleType)
        {
            var component = CreateComponent <Oultrox.EntitasPong.Entitas.Components.PaddleComponent>(ComponentIds.Paddle);

            component.paddleType = newPaddleType;
            ReplaceComponent(ComponentIds.Paddle, component);
            return(this);
        }