Alexandria.Engines.Unreal.State.RegisterTypes C# (CSharp) Method

RegisterTypes() public method

public RegisterTypes ( string packageName, string className ) : void
packageName string
className string
return void
        public void RegisterTypes(string packageName, string className, params Type[] types)
        {
            foreach (var type in types)
                RegisterType(packageName, className, type);
        }