hedgewars/hwLibrary.pas
author nemo
Mon, 27 Dec 2010 12:47:51 -0500
branch0.9.15
changeset 4721 5e50d8162a96
parent 4603 d362ab6c7f53
child 4850 434cd1284204
permissions -rw-r--r--
Merge trunk into 0.9.15, excluding CMakeLists.txt and ChangeLog.txt - this should fix snowball again, pick up some more translation changes, hide the seed button by default and fix a couple of frontend desyncs

//  fptest
//
//  Created by Vittorio on 08/01/10.
//  Copyright __MyCompanyName__ 2010. All rights reserved.

Library hwLibrary;

// Add all your Pascal units to the "uses" clause below to add them to the program.

// Mark all Pascal procedures/functions that you wish to call from C/C++/Objective-C code using
// "cdecl; export;" (see the fpclogo.pas unit for an example), and then add C-declarations for
// these procedures/functions to the PascalImports.h file (also in the "Pascal Sources" group)
// to make these functions available in the C/C++/Objective-C source files
// (add "#include PascalImports.h" near the top of these files if it's not there yet)
uses cmem, uVariables, PascalExports, hwengine;
begin
    // avoid compiler warnings about units not being used
    isTerminated:= isTerminated;
end.