// Copyright (c) Wojciech Figat. All rights reserved.
namespace FlaxEngine
{
partial class PluginManager
{
///
/// Returns the first plugin of the provided type.
///
/// The plugin type.
/// The plugin, or null if not loaded.
public static T GetPlugin() where T : Plugin
{
return (T)GetPlugin(typeof(T));
}
}
}