source:
trunk/UScene.pas@
140
Last change on this file since 140 was 130, checked in by , 2 years ago | |
---|---|
File size: 215 bytes |
Rev | Line | |
---|---|---|
[130] | 1 | unit UScene; |
2 | ||
3 | interface | |
4 | ||
5 | uses | |
6 | Classes, SysUtils; | |
7 | ||
8 | type | |
9 | ||
10 | { TScene } | |
11 | ||
12 | TScene = class | |
13 | Parent: TScene; | |
14 | procedure Draw; virtual; | |
15 | end; | |
16 | ||
17 | implementation | |
18 | ||
19 | { TScene } | |
20 | ||
21 | procedure TScene.Draw; | |
22 | begin | |
23 | end; | |
24 | ||
25 | end. | |
26 |
Note:
See TracBrowser
for help on using the repository browser.