mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
12 lines
336 B
C#
12 lines
336 B
C#
using System;
|
|
using HALVGAScreen =Cosmos.HAL.VGAScreen;
|
|
|
|
namespace Cosmos.System
|
|
{
|
|
[Obsolete("This class has not been properly converted to the final cosmos architecture!")]
|
|
public class VGAScreen
|
|
{
|
|
private HALVGAScreen mScreen = new HALVGAScreen();
|
|
// todo: this class needs to wrap HALVGAScreen
|
|
}
|
|
}
|