Difference between revisions of "Mono:Lua:mono class getNamespace"

From Cheat Engine
Jump to navigation Jump to search
(Created page with 'Category:Mono Category:Lua '''function''' mono_class_getNamespace(''classId'') ''':''' string Returns the namespace of the given class as a string. ===Function Paramete…')
 
(No difference)

Latest revision as of 00:43, 6 May 2018

function mono_class_getNamespace(classId) : string

Returns the namespace of the given class as a string.

Function Parameters[edit]

Parameter Type Description
classId integer The class' ID


Examples[edit]

In Lua Engine form[edit]

While attached to Cuphead.

Input:

local cId = mono_findClass('', 'PlayerStatsManager')
return mono_class_getNamespace(cId)

Output:

:


See also[edit]

Related Functions[edit]