/////////////////////////////////////////////////////////// // ao_craft_calc // // Калькулятор крафта для Аллодов Онлайн // // Copyright (C) 2014 Sagrer // // Распространяется на условиях // // Modified LGPL v2.1 // // см. файл COPYING.modifiedLGPL.txt // // // // http://personal.sagrer.ru/tracs/ao_craft_calc // /////////////////////////////////////////////////////////// //Please, use UTF8-encoding to read this file. //Chtobi prochitat etot fail - vospolzuites kodirovkoy UTF8. //Над данным файлом работали: // 1) Sagrer (sagrer@yandex.ru) // 2) //////////////////////////////////////////////////////////////////////// program ao_craft_calc; {$mode objfpc}{$H+} uses {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, {$ENDIF}{$ENDIF} Interfaces, // this includes the LCL widgetset Forms, MainForm, AOC_LogicClass, GlobalJunkYard, AOC_Settings, AOC_RecipesDataContainers, AOC_CraftCalcEngine, AOC_CraftCalcResult, AboutForm { you can add units after this }; {$R *.res} begin RequireDerivedFormResource := True; Application.Initialize; Application.CreateForm(TMainF, MainF); Application.Run; end.