mirror of
https://github.com/Jacobwasbeast/LegacyWeaveLoader.git
synced 2026-05-22 13:44:31 +00:00
Rename across entire codebase: - LegacyForge -> WeaveLoader (identifiers, namespaces, classes, DLLs) - LegacyForgeRuntime -> WeaveLoaderRuntime (C++ project) - LegacyForge.API/Core/Launcher -> WeaveLoader.API/Core/Launcher (C# projects) - [LegacyForge] -> [WeaveLoader] (log prefixes) - legacyforge -> weaveloader (config files, log files, backup suffixes) - Display name "Weave Loader" in README, CONTRIBUTING, LICENSE
15 lines
464 B
C#
15 lines
464 B
C#
using WeaveLoader.API;
|
|
|
|
namespace WeaveLoader.Core;
|
|
|
|
/// <summary>
|
|
/// Built-in mod representing the WeaveLoader API. Counts in the mod list and appears
|
|
/// when mods/WeaveLoader.API/ exists. Does not run lifecycle hooks.
|
|
/// </summary>
|
|
[Mod("weaveloader.api", Name = "WeaveLoader API", Version = "1.0.0", Author = "WeaveLoader",
|
|
Description = "Mod API and shared types")]
|
|
internal sealed class WeaveLoaderApiMod : IMod
|
|
{
|
|
public void OnInitialize() { }
|
|
}
|