Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions rts/Lua/LuaUnsyncedRead.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1534,7 +1534,7 @@ namespace Impl {
* @function Spring.GetUnitIconData
* @param unitID number
* @param fullData boolean? (Default: false) Whether additional information about the icon is returned, otherwise only `name` and `atlasTexCoords` are returned
* @return IconData iconData
* @return IconData? `nil` if unit is not found or unit currentIconIndex is invalid
* @see Spring.GetIconData
*/
int LuaUnsyncedRead::GetUnitIconData(lua_State* L)
Expand Down Expand Up @@ -1578,7 +1578,7 @@ int LuaUnsyncedRead::GetUnitIcon(lua_State* L)
* @function Spring.GetIconData
* @param iconName string
* @param fullData boolean? (Default: false) Whether additional information about the icon is returned, otherwise only `name` and `atlasTexCoords` are returned
* @return IconData iconData
* @return IconData? `nil` if iconName lookup fails
* @see Spring.GetUnitIconData
*/
int LuaUnsyncedRead::GetIconData(lua_State* L)
Expand Down Expand Up @@ -3899,9 +3899,9 @@ int LuaUnsyncedRead::GetActivePage(lua_State* L)
* @function Spring.GetMouseState
* @return number x
* @return number y
* @return number lmbPressed left mouse button pressed
* @return number mmbPressed middle mouse button pressed
* @return number rmbPressed right mouse button pressed
* @return boolean lmbPressed left mouse button pressed
* @return boolean mmbPressed middle mouse button pressed
* @return boolean rmbPressed right mouse button pressed
* @return boolean offscreen
* @return boolean mmbScroll
*/
Expand Down
Loading