Skip to content

Commit

Permalink
Add more comments
Browse files Browse the repository at this point in the history
  • Loading branch information
qubka committed Oct 6, 2024
1 parent 3b42e7e commit ba3a3fd
Show file tree
Hide file tree
Showing 13 changed files with 2,652 additions and 308 deletions.
109 changes: 78 additions & 31 deletions cs2sdk.pplugin.in
Original file line number Diff line number Diff line change
Expand Up @@ -684,8 +684,8 @@
}
},
{
"name": "ClientCommandFromServer",
"funcName": "ClientCommandFromServer",
"name": "FakeClientCommand",
"funcName": "FakeClientCommand",
"paramTypes": [
{
"name": "clientIndex",
Expand All @@ -703,8 +703,8 @@
}
},
{
"name": "PrintServer",
"funcName": "PrintServer",
"name": "PrintToServer",
"funcName": "PrintToServer",
"paramTypes": [
{
"name": "msg",
Expand All @@ -717,8 +717,8 @@
}
},
{
"name": "PrintConsole",
"funcName": "PrintConsole",
"name": "PrintToConsole",
"funcName": "PrintToConsole",
"paramTypes": [
{
"name": "clientIndex",
Expand All @@ -736,8 +736,8 @@
}
},
{
"name": "PrintChat",
"funcName": "PrintChat",
"name": "PrintToChat",
"funcName": "PrintToChat",
"paramTypes": [
{
"name": "clientIndex",
Expand All @@ -755,8 +755,8 @@
}
},
{
"name": "PrintCentre",
"funcName": "PrintCentre",
"name": "PrintCenterText",
"funcName": "PrintCenterText",
"paramTypes": [
{
"name": "clientIndex",
Expand All @@ -774,8 +774,8 @@
}
},
{
"name": "PrintAlert",
"funcName": "PrintAlert",
"name": "PrintAlertText",
"funcName": "PrintAlertText",
"paramTypes": [
{
"name": "clientIndex",
Expand All @@ -793,8 +793,8 @@
}
},
{
"name": "PrintHtmlCentre",
"funcName": "PrintHtmlCentre",
"name": "PrintCentreHtml",
"funcName": "PrintCentreHtml",
"paramTypes": [
{
"name": "clientIndex",
Expand All @@ -812,8 +812,8 @@
}
},
{
"name": "PrintConsoleAll",
"funcName": "PrintConsoleAll",
"name": "PrintToConsoleAll",
"funcName": "PrintToConsoleAll",
"paramTypes": [
{
"name": "message",
Expand All @@ -826,8 +826,8 @@
}
},
{
"name": "PrintChatAll",
"funcName": "PrintChatAll",
"name": "PrintToChatAll",
"funcName": "PrintToChatAll",
"paramTypes": [
{
"name": "message",
Expand All @@ -840,8 +840,8 @@
}
},
{
"name": "PrintCentreAll",
"funcName": "PrintCentreAll",
"name": "PrintCenterTextAll",
"funcName": "PrintCenterTextAll",
"paramTypes": [
{
"name": "message",
Expand All @@ -854,8 +854,8 @@
}
},
{
"name": "PrintAlertAll",
"funcName": "PrintAlertAll",
"name": "PrintAlertTextToAll",
"funcName": "PrintAlertTextToAll",
"paramTypes": [
{
"name": "message",
Expand All @@ -868,8 +868,8 @@
}
},
{
"name": "PrintHtmlCentreAll",
"funcName": "PrintHtmlCentreAll",
"name": "PrintCentreHtmlAll",
"funcName": "PrintCentreHtmlAll",
"paramTypes": [
{
"name": "message",
Expand All @@ -882,8 +882,8 @@
}
},
{
"name": "PrintChatColored",
"funcName": "PrintChatColored",
"name": "PrintToChatColored",
"funcName": "PrintToChatColored",
"paramTypes": [
{
"name": "clientIndex",
Expand All @@ -901,8 +901,8 @@
}
},
{
"name": "PrintChatColoredAll",
"funcName": "PrintChatColoredAll",
"name": "PrintToChatColoredAll",
"funcName": "PrintToChatColoredAll",
"paramTypes": [
{
"name": "message",
Expand Down Expand Up @@ -1792,6 +1792,25 @@
"type": "int64"
}
},
{
"name": "GetConVarBounds",
"funcName": "GetConVarBounds",
"paramTypes": [
{
"name": "conVar",
"type": "ptr64",
"ref": false
},
{
"name": "max",
"type": "bool",
"ref": false
}
],
"retType": {
"type": "string"
}
},
{
"name": "SetConVarBounds",
"funcName": "SetConVarBounds",
Expand Down Expand Up @@ -1925,8 +1944,8 @@
}
},
{
"name": "GetMapName",
"funcName": "GetMapName",
"name": "GetCurrentMap",
"funcName": "GetCurrentMap",
"paramTypes": [],
"retType": {
"type": "string"
Expand Down Expand Up @@ -1986,6 +2005,34 @@
"type": "int32"
}
},
{
"name": "GenericModel",
"funcName": "GenericModel",
"paramTypes": [
{
"name": "file",
"type": "string",
"ref": false
}
],
"retType": {
"type": "int32"
}
},
{
"name": "IsGenericPrecache",
"funcName": "IsGenericPrecache",
"paramTypes": [
{
"name": "file",
"type": "string",
"ref": false
}
],
"retType": {
"type": "bool"
}
},
{
"name": "PrecacheModel",
"funcName": "PrecacheModel",
Expand All @@ -2011,7 +2058,7 @@
}
],
"retType": {
"type": "void"
"type": "bool"
}
},
{
Expand Down
Loading

0 comments on commit ba3a3fd

Please sign in to comment.