SDL test program Initial Import
This commit is contained in:
parent
34d1036123
commit
aec906fff3
|
@ -0,0 +1,16 @@
|
||||||
|
Program MDLTEST9;
|
||||||
|
|
||||||
|
Uses
|
||||||
|
m_SDLCRT;
|
||||||
|
|
||||||
|
Var
|
||||||
|
Console : TSDLConsole;
|
||||||
|
|
||||||
|
Begin
|
||||||
|
Console := TSDLConsole.Create(Mode_80x25);
|
||||||
|
|
||||||
|
Repeat
|
||||||
|
Until Console.KeyPressed;
|
||||||
|
|
||||||
|
Console.Free;
|
||||||
|
End.
|
Loading…
Reference in New Issue