Skip to content

Libraries

Gabriel edited this page Sep 26, 2023 · 4 revisions

Getting started

Table of contents

Writing libraries

Libraries must start with the Library identifier to determine its type, followed by a string literal for the library name.

Library names must not contain spaces.

Your code should be written in C#, within the limitations of .NET Standard 2.0.

Examples

Library "ExampleLibrary"
{
    // Write your code here.
}

Optional attributes

  • by - not used by Hedge Mod Manager, but gives attribution to authors in case they should be contacted with reports.

    Example

    Library "ExampleLibrary" by "Hyper"
    
Clone this wiki locally