Merge branch 'main' into mods

This commit is contained in:
madeline
2026-04-23 02:20:13 -07:00
60 changed files with 1586 additions and 770 deletions
+3 -3
View File
@@ -76,9 +76,9 @@ All fields are optional but recommended. `name` falls back to the filename, `ver
extern "C" {
void mod_init (DuskModAPI* api); // required called once at startup
void mod_tick (DuskModAPI* api); // required called every frame
void mod_cleanup(DuskModAPI* api); // optional called on shutdown
void mod_init (DuskModAPI* api); // required, called once at startup
void mod_tick (DuskModAPI* api); // required, called every frame
void mod_cleanup(DuskModAPI* api); // optional, called on shutdown
}
```