mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-05 15:56:00 +02:00
Initial console support
This commit is contained in:
parent
45a5978611
commit
186c2125fa
21 changed files with 1244 additions and 29 deletions
20
IDE/src/util/ConsoleProvider.bf
Normal file
20
IDE/src/util/ConsoleProvider.bf
Normal file
|
@ -0,0 +1,20 @@
|
|||
namespace IDE.util;
|
||||
|
||||
class ConsoleProvider
|
||||
{
|
||||
public struct Cell
|
||||
{
|
||||
public char32 mChar;
|
||||
public uint32 mFgColor;
|
||||
public uint32 mBgColor;
|
||||
}
|
||||
|
||||
public virtual void Get(int col, int row)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
class WinNativeConsoleProvider
|
||||
{
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue