SDL test program Initial Import

This commit is contained in:
mysticbbs 2012-02-22 06:37:17 -05:00
parent 34d1036123
commit aec906fff3
1 changed files with 16 additions and 0 deletions

16
mdl/mdltest9.pas Normal file
View File

@ -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.