--- 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
--- 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;