50 lines
1.2 KiB
Java
50 lines
1.2 KiB
Java
/*
|
|
* Copyright (C) 2025 UnlegitDqrk - All Rights Reserved
|
|
*
|
|
* You are unauthorized to remove this copyright.
|
|
* You have to give Credits to the Author in your project and link this GitHub site: https://github.com/UnlegitDqrk
|
|
* See LICENSE-File if exists
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2024 UnlegitDqrk - All Rights Reserved
|
|
*
|
|
* You are unauthorized to remove this copyright.
|
|
* You have to give Credits to the Author in your project and link this GitHub site: https://github.com/UnlegitDqrk
|
|
* See LICENSE-File if exists
|
|
*/
|
|
|
|
package dev.unlegitdqrk.unlegitlibrary.addon.events;
|
|
|
|
import dev.unlegitdqrk.unlegitlibrary.addon.impl.Addon;
|
|
import dev.unlegitdqrk.unlegitlibrary.event.impl.Event;
|
|
|
|
public class AddonDisabledEvent extends Event {
|
|
|
|
public final Addon addon;
|
|
|
|
public AddonDisabledEvent(Addon addon) {
|
|
this.addon = addon;
|
|
}
|
|
|
|
@Override
|
|
protected final Object clone() throws CloneNotSupportedException {
|
|
return super.clone();
|
|
}
|
|
|
|
@Override
|
|
public final boolean equals(Object obj) {
|
|
return super.equals(obj);
|
|
}
|
|
|
|
@Override
|
|
public final String toString() {
|
|
return super.toString();
|
|
}
|
|
|
|
@Override
|
|
public final int hashCode() {
|
|
return super.hashCode();
|
|
}
|
|
}
|