Noi
1149f2800d
Moved modules into the assembly itself to simplify development of further features and reduce complexity in building this project. Additionally, many small adjustments were made, including: - Add documentation to most public methods that had it missing - Minor style updates - Updated readme to reflect near-completion of this rewrite - Remove any last remaining references to old project name Kerobot - Update dependencies
8 lines
415 B
C#
8 lines
415 B
C#
namespace RegexBot;
|
|
|
|
/// <summary>
|
|
/// Provides a hint to the module loader that the class it is applied to should be treated as a module instance.
|
|
/// When the program scans an assembly, it is scanned for classes which implement <see cref="RegexbotModule"/> and have this attribute.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
|
|
public class RegexbotModuleAttribute : Attribute { }
|