public bool OnLoad(Proteus.Kernel.Information.License license, Proteus.Kernel.Information.Version version, Proteus.Kernel.Information.Platform platform)
        {
            if (Hal.DeviceUtility.TestMdxPresence())
            {
                // Register rendering task.
                Framework.Hosting.Engine.Instance.Tasks.Enqueue(new RenderTask());

                return(true);
            }
            return(false);
        }
 public bool OnUnload(Proteus.Kernel.Information.License license, Proteus.Kernel.Information.Version version, Proteus.Kernel.Information.Platform platform)
 {
     return(true);
 }