예제 #1
0
		public override void DrawOnShape(IShape theShpe)
		{
			m_RenderEngine.Render("Draw Border On "+ theShpe.GetPolygon());
		}
예제 #2
0
		public IShapeDecorator(IShape theComponent)
		{
			m_Component = theComponent;
		}
예제 #3
0
		public abstract void DrawOnShape(IShape theShpe);
예제 #4
0
		public BorderDecorator(IShape theComponent):base(theComponent)
		{}