Skip to content

Commit

Permalink
Document the last untouched hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
thecraftianman committed Jan 8, 2024
1 parent 8ed69c6 commit f3f116c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lua/acf/hooks/hooks_cl.lua
Original file line number Diff line number Diff line change
Expand Up @@ -194,4 +194,16 @@ Hooks.Add("ACF_Base_Client", function(Gamemode)
-- @param Trace The TraceResult from the player's eye trace.
function Gamemode:ACF_OnDrawBoxes()
end

--- Called after requesting a newly spawned model's data from the server.
-- Model data will always be invalid at this point.
-- @param Model The model that has had its data requested.
function Gamemode:ACF_OnRequestedModelData()
end

--- Called after receiving a newly spawned model's data from the server.
-- @param Model The model that has received new data.
-- @param Data The data about the model that was received from the server.
function Gamemode:ACF_OnReceivedModelData()
end
end)

0 comments on commit f3f116c

Please sign in to comment.