// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
using System;
namespace FlaxEngine
{
///
/// The engine plugin description container.
///
public struct PluginDescription
{
///
/// The name of the plugin.
///
public string Name;
///
/// The version of the plugin.
///
public Version Version;
///
/// The name of the author of the plugin.
///
public string Author;
///
/// The plugin author website URL.
///
public string AuthorUrl;
///
/// The homepage URL for the plugin.
///
public string HomepageUrl;
///
/// The plugin repository URL (for open-source plugins).
///
public string RepositoryUrl;
///
/// The plugin description.
///
public string Description;
///
/// The plugin category.
///
public string Category;
///
/// True if plugin is during Beta tests (before release).
///
public bool IsBeta;
///
/// True if plugin is during Alpha tests (early version).
///
public bool IsAlpha;
}
}