示例#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;
 }