Go to most recent revision | Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 789 | chris | 1 | using System; |
| 2 | using System.Collections.Generic; |
||
| 3 | using System.Linq; |
||
| 4 | using System.Text; |
||
| 5 | using System.Threading.Tasks; |
||
| 6 | |||
| 7 | using BauzoidNET.app; |
||
| 8 | |||
| 9 | namespace BauzoidNET.graphics |
||
| 10 | { |
||
| 11 | public class GraphicsObject : BauzoidObject |
||
| 12 | { |
||
| 13 | |||
| 14 | public GraphicsObject(Graphics graphics) |
||
| 15 | : base(graphics.getApp()) |
||
| 16 | { |
||
| 17 | } |
||
| 18 | |||
| 19 | public Graphics getGraphics() |
||
| 20 | { |
||
| 21 | return getApp().getGraphics(); |
||
| 22 | } |
||
| 23 | } |
||
| 24 | } |