Example #1
0
 public SubTitlesDecorator(ProductComponent baseComponent)
     : base(baseComponent)
 {
     this.m_Name = "Are subtitles";
 }
Example #2
0
 public EffectsDecorator(ProductComponent baseComponent)
     : base(baseComponent)
 {
     this.m_Name = "Are effects";
 }
Example #3
0
 public GraphicsDecorator(ProductComponent baseComponent)
     : base(baseComponent)
 {
     this.m_Name = "Are graphics";
 }
Example #4
0
 public Decorator(ProductComponent baseComponent)
 {
     this.m_BaseComponent = baseComponent;
 }