Initial Commit

This commit is contained in:
Melledy
2025-10-27 02:02:26 -07:00
commit f58951fe2a
378 changed files with 315914 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package emu.nebula.database;
import emu.nebula.Nebula;
public interface GameDatabaseObject {
public default void save() {
Nebula.getGameDatabase().save(this);
}
}