Example #1
0
 public Console(CellSurface cellData)
     : base(cellData, new SpriteBatch(Engine.Device))
 {
     _virtualCursor = new Cursor(this);
 }
Example #2
0
 public Console(int width, int height)
     : base(new CellSurface(width, height), new SpriteBatch(Engine.Device))
 {
     _virtualCursor = new Cursor(this);
 }