JackOUT

Untitled

May 27th, 2023
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.47 KB | None | 0 0
  1. package games.coob.portals.model;
  2.  
  3. import lombok.Getter;
  4. import org.bukkit.block.Block;
  5. import org.jetbrains.annotations.Nullable;
  6.  
  7. @Getter
  8. public class Cosmic extends PortalData {
  9.  
  10.     protected Cosmic(final String portalId, @Nullable final Block block, @Nullable final PortalType portalType) {
  11.         super(portalId, block, portalType);
  12.     }
  13.  
  14.     @Override
  15.     protected void onLoad() {
  16.         super.onLoad();
  17.     }
  18.  
  19.     @Override
  20.     protected void onSave() {
  21.         super.onSave();
  22.     }
  23. }
  24.  
Add Comment
Please, Sign In to add comment