mirror of
https://github.com/ulfgebhardt/delphi_pixelbattle.git
synced 2025-12-13 00:15:50 +00:00
14 lines
192 B
ObjectPascal
14 lines
192 B
ObjectPascal
program Pixelbattle;
|
|
|
|
uses
|
|
Forms,
|
|
uPixelbattle in 'uPixelbattle.pas' {Form1};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|