Codefix: broken links and syntax issues in script API documentation
This commit is contained in:
@@ -25,19 +25,21 @@ public:
|
||||
/**
|
||||
* Apply a filter when building the list.
|
||||
* @param filter_function The function which will be doing the filtering.
|
||||
* @param params The params to give to the filters (minus the first param,
|
||||
* @param ... The params to give to the filters (minus the first param,
|
||||
* which is always the index-value).
|
||||
* @note You can write your own filters and use them. Just remember that
|
||||
* the first parameter should be the index-value, and it should return
|
||||
* a bool.
|
||||
* @note Example:
|
||||
* @code
|
||||
* function IsType(subsidy_id, type)
|
||||
* {
|
||||
* return ScriptSubsidy.GetSourceType(subsidy_id) == type;
|
||||
* }
|
||||
* ScriptSubsidyList(IsType, ScriptSubsidy.SPT_TOWN);
|
||||
* local town_subs = ScriptSubsidyList(IsType, ScriptSubsidy.SPT_TOWN);
|
||||
* @endcode
|
||||
*/
|
||||
ScriptSubsidyList(void *filter_function, int params, ...);
|
||||
ScriptSubsidyList(function filter_function, ...);
|
||||
#else
|
||||
ScriptSubsidyList(HSQUIRRELVM vm);
|
||||
#endif /* DOXYGEN_API */
|
||||
|
||||
Reference in New Issue
Block a user