Skip to content

Commit

Permalink
In English please !!
Browse files Browse the repository at this point in the history
  • Loading branch information
Euphillya committed Jan 22, 2025
1 parent 3ebe186 commit a52548f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,24 @@
public interface SkylliaAddon {

/**
* Indique la phase de chargement dans laquelle l'addon souhaite être initialisé.
* Indicates the loading phase in which the addon wishes to be initialized.
*/
AddonLoadPhase getLoadPhase();

/**
* Chargé quand l'addon est détecté, donc selon la phase (BEFORE/AFTER)
* Called when the addon is detected, according to its loading phase (BEFORE/AFTER).
*/
void onLoad(Plugin plugin);

/**
* Appelé juste après onLoad (dans la même phase).
* Utile si tu veux séparer la configuration/initialisation (onLoad)
* de l'activation réelle (onEnable).
* Called immediately after onLoad (within the same phase).
* Useful if you want to separate configuration/initialization (onLoad)
* from the actual activation (onEnable).
*/
void onEnable();

/**
* Appelé quand on désactive l'addon.
* Called when the addon is deactivated.
*/
void onDisabled();
}
1 change: 0 additions & 1 deletion plugin/src/main/java/fr/euphyllia/skyllia/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ public class Main extends JavaPlugin {

private InterneAPI interneAPI;

// Si vous souhaitez garder un accès aux registries
private SubCommandRegistry commandRegistry;
private SubCommandRegistry adminCommandRegistry;

Expand Down

0 comments on commit a52548f

Please sign in to comment.