source: trunk/Scenes/SceneGameSlots.pas

Last change on this file was 143, checked in by chronos, 12 months ago

Removed U prefix from all units.

File size: 282 bytes
Line 
1unit SceneGameSlots;
2
3interface
4
5uses
6 Classes, SysUtils, Scene;
7
8type
9
10 { TSceneGameSlots }
11
12 TSceneGameSlots = class(TScene)
13 procedure Draw; override;
14 end;
15
16implementation
17
18{ TSceneGameSlots }
19
20procedure TSceneGameSlots.Draw;
21begin
22
23end;
24
25end.
26
Note: See TracBrowser for help on using the repository browser.