source: trunk/Core.pas

Last change on this file was 74, checked in by chronos, 7 weeks ago
  • Modified: Updated Common package.
File size: 300 bytes
Line 
1unit Core;
2
3interface
4
5uses
6 Classes, SysUtils, Theme, ApplicationInfo, Translator;
7
8type
9
10 { TCore }
11
12 TCore = class(TDataModule)
13 ApplicationInfo: TApplicationInfo;
14 Translator1: TTranslator;
15 ThemeManager1: TThemeManager;
16 end;
17
18var
19 Core: TCore;
20
21
22implementation
23
24{$R *.lfm}
25
26end.
27
Note: See TracBrowser for help on using the repository browser.