16 lines
396 B
C#
16 lines
396 B
C#
// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
|
|
|
|
namespace FlaxEngine
|
|
{
|
|
/// <summary>
|
|
/// Base class for all plugins used at runtime in game.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Plugins should have a public and parameter-less constructor.
|
|
/// </remarks>
|
|
/// <seealso cref="FlaxEngine.Plugin" />
|
|
public abstract class GamePlugin : Plugin
|
|
{
|
|
}
|
|
}
|