# HG changeset patch # User sheepluva # Date 1302255618 -7200 # Node ID 84267f79879b7ea10e4ada4cd7ac4df0ac5dde05 # Parent b0b57f247e02c1acf7fada497de648c0360d2b1f comments diff -r b0b57f247e02 -r 84267f79879b hedgewars/uFloat.pas --- a/hedgewars/uFloat.pas Fri Apr 08 04:30:28 2011 +0200 +++ b/hedgewars/uFloat.pas Fri Apr 08 11:40:18 2011 +0200 @@ -34,8 +34,8 @@ * * Note: Below you'll find a list of hwFloat constants: * E.g. _1 is an hwFloat with value 1.0, and -_0_9 is -0.9 - * Use and extend the list if needed, rather then using hwFloat() with - * integer constants. + * Use and extend the list if needed, rather than using int2hwFloat() + * with integer constants. *) interface diff -r b0b57f247e02 -r 84267f79879b hedgewars/uScript.pas --- a/hedgewars/uScript.pas Fri Apr 08 04:30:28 2011 +0200 +++ b/hedgewars/uScript.pas Fri Apr 08 11:40:18 2011 +0200 @@ -19,6 +19,16 @@ {$INCLUDE "options.inc"} unit uScript; +(* + * This unit defines, implements and registers functions and + * variables/constants bindings for usage in Lua scripts. + * + * Please keep http://code.google.com/p/hedgewars/wiki/LuaAPI up to date! + * + * Note: If you add a new function, make sure to test if _all_ parameters + * work as intended! (Especially conversions errors can sneak in + * unnoticed and render the parameter useless!) + *) interface procedure ScriptPrintStack;