mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-12-03 04:04:16 +00:00
Granted access to scripts to some otherwise blacklisted functions.
This commit is contained in:
parent
75af1b3947
commit
4d7f3a3643
36
source/funkin/util/ReflectUtil.hx
Normal file
36
source/funkin/util/ReflectUtil.hx
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
package funkin.util;
|
||||||
|
|
||||||
|
import Type;
|
||||||
|
|
||||||
|
class ReflectUtil
|
||||||
|
{
|
||||||
|
public static function getClassFields(cls:Class<Dynamic>):Array<String>
|
||||||
|
{
|
||||||
|
return Type.getClassFields(cls);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getClassFieldsOf(obj:Dynamic):Array<String>
|
||||||
|
{
|
||||||
|
return Type.getClassFields(Type.getClass(obj));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getInstanceFields(cls:Class<Dynamic>):Array<String>
|
||||||
|
{
|
||||||
|
return Type.getInstanceFields(cls);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getInstanceFieldsOf(obj:Dynamic):Array<String>
|
||||||
|
{
|
||||||
|
return Type.getInstanceFields(Type.getClass(obj));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getClassName(cls:Class<Dynamic>):String
|
||||||
|
{
|
||||||
|
return Type.getClassName(cls);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getClassNameOf(obj:Dynamic):String
|
||||||
|
{
|
||||||
|
return Type.getClassName(Type.getClass(obj));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue