Add a custom currency API
This commit is contained in:
parent
c6ff1afbdc
commit
1842387ec8
23 changed files with 783 additions and 42 deletions
|
@ -0,0 +1,19 @@
|
|||
package dev.zontreck.libzontreck.currency.events;
|
||||
|
||||
|
||||
import dev.zontreck.ariaslib.events.Event;
|
||||
import dev.zontreck.libzontreck.currency.Account;
|
||||
|
||||
public class BankAccountCreatedEvent extends Event
|
||||
{
|
||||
public Account account;
|
||||
public BankAccountCreatedEvent(Account act)
|
||||
{
|
||||
account=act;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isCancellable() {
|
||||
return false;
|
||||
}
|
||||
}
|
Reference in a new issue