Rev 789 | Details | Compare with Previous | 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; |
||
| 790 | chris | 8 | using BauzoidNET.graphics.renderstates; |
| 789 | chris | 9 | |
| 10 | namespace BauzoidNET.graphics |
||
| 11 | { |
||
| 12 | public class GraphicsObject : BauzoidObject |
||
| 13 | { |
||
| 14 | |||
| 15 | public GraphicsObject(Graphics graphics) |
||
| 16 | : base(graphics.getApp()) |
||
| 17 | { |
||
| 18 | } |
||
| 19 | |||
| 20 | public Graphics getGraphics() |
||
| 21 | { |
||
| 22 | return getApp().getGraphics(); |
||
| 23 | } |
||
| 790 | chris | 24 | |
| 25 | public RenderStates getRenderStates() |
||
| 26 | { |
||
| 27 | return getApp().getRenderStates(); |
||
| 28 | } |
||
| 789 | chris | 29 | } |
| 30 | } |