aboutsummaryrefslogtreecommitdiffstats
path: root/src/base/UModules.pas
blob: f4503aeb8a8e0936803864bbb8c2e3857564accd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
unit UModules;

interface

{$IFDEF FPC}
  {$MODE Delphi}
{$ENDIF}

{$I switches.inc}

{*********************
  UModules
  Unit Contains all used Modules in its uses clausel
  and a const with an array of all Modules to load
*********************}

uses
  UCoreModule,
  UPluginLoader;

const
  CORE_MODULES_TO_LOAD: Array[0..2] of cCoreModule = (
    TPluginLoader,      //First because it has to look if there are Module replacements (Feature o/t Future)
    TCoreModule,        //Remove this later, just a dummy
    TtehPlugins         //Represents the Plugins. Last because they may use CoreModules Services etc.
  );

implementation

end.