Bethesda mods sign up

broken image
broken image
broken image

broken image

Strongly typed objects and fields for all records, which naturally offer Intellisense and type safety.Ability to analyze, create, or manipulate esp/esm mod files for Bethesda games in C#.This means the library is able to provide consistent API with very little manual work when adding new record definitions or features. Most of the public facing API is created by code generation, with small manual snippets of code for the one-off special cases. The interfaces offer clean API to the user and abstract away much of the binary record specifics and oddities of how they are stored on disk, while the actual implementation remains very closely tied to the data offering as much speed as it can by leveraging some of the latest C# features. With actual members for each field they get the benefits of type safety, simple live debugging, Intellisense features such as autocomplete.

broken image

One of its main features is offering interfaces and classes for the records that exist at compile time and are first class citizens in C#. Mutagen is a C# library for analyzing, modifying, and creating Bethesda mods.