source: tags/1.4.0/Scenes/USceneGameSlots.pas

Last change on this file was 130, checked in by chronos, 13 months ago
  • Added: Allow to save/load game in multiple slots.
File size: 265 bytes
Line 
1unit USceneGameSlots;
2
3interface
4
5uses
6 Classes, SysUtils, UScene, UMenu;
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.