Skip to content

Commit

Permalink
???
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyrotonic1 committed Oct 24, 2024
1 parent 870d866 commit ed06a22
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions remappedSrc/org/pyrotonic/simplenotes/Simplenotes.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package org.pyrotonic.simplenotes;

import net.fabricmc.api.ModInitializer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class Simplenotes implements ModInitializer {
public static final String MOD_ID = "simplenotes";
public static final Logger LOGGER = LoggerFactory.getLogger(MOD_ID);
@Override
public void onInitialize() {

LOGGER.info("Simple Notes Initialized!");


}
}

0 comments on commit ed06a22

Please sign in to comment.