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