mirror of
https://github.com/Melledy/Nebula.git
synced 2025-12-25 10:44:37 +01:00
12 lines
187 B
Java
12 lines
187 B
Java
package emu.nebula.database;
|
|
|
|
import emu.nebula.Nebula;
|
|
|
|
public interface GameDatabaseObject {
|
|
|
|
public default void save() {
|
|
Nebula.getGameDatabase().save(this);
|
|
}
|
|
|
|
}
|