mirror of
https://codeberg.org/Duvelcorp/MetaHunt.git
synced 2026-09-22 07:36:58 +00:00
11 lines
280 B
Lua
11 lines
280 B
Lua
if not MTH_ST_VitalsService then
|
|
MTH_ST_VitalsService = {}
|
|
end
|
|
|
|
function MTH_ST_VitalsService:HandleEvent(evt, eventArg1, _eventArg2)
|
|
if type(MTH_ST_HandleVitalsEvent) ~= "function" then
|
|
return false
|
|
end
|
|
return MTH_ST_HandleVitalsEvent(evt, eventArg1) and true or false
|
|
end
|