예제 #1
0
파일: Decorator.cs 프로젝트: Vlada0/TMPS2
 public SubTitlesDecorator(ProductComponent baseComponent)
     : base(baseComponent)
 {
     this.m_Name = "Are subtitles";
 }
예제 #2
0
파일: Decorator.cs 프로젝트: Vlada0/TMPS2
 public EffectsDecorator(ProductComponent baseComponent)
     : base(baseComponent)
 {
     this.m_Name = "Are effects";
 }
예제 #3
0
파일: Decorator.cs 프로젝트: Vlada0/TMPS2
 public GraphicsDecorator(ProductComponent baseComponent)
     : base(baseComponent)
 {
     this.m_Name = "Are graphics";
 }
예제 #4
0
파일: Decorator.cs 프로젝트: Vlada0/TMPS2
 public Decorator(ProductComponent baseComponent)
 {
     this.m_BaseComponent = baseComponent;
 }