All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 1m10s
27 lines
413 B
Java
27 lines
413 B
Java
package cc.fascinated.bat.common;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
/**
|
|
* @author Fascinated (fascinated7)
|
|
*/
|
|
@AllArgsConstructor
|
|
@Getter
|
|
@Setter
|
|
public abstract class Profile {
|
|
/**
|
|
* The key of the profile.
|
|
*/
|
|
private String profileKey;
|
|
|
|
public Profile() {
|
|
}
|
|
|
|
/**
|
|
* Resets the profile
|
|
*/
|
|
public abstract void reset();
|
|
}
|