Add a custom currency API

This commit is contained in:
Aria 2023-04-21 17:44:33 -07:00
parent c6ff1afbdc
commit 1842387ec8
23 changed files with 783 additions and 42 deletions

View file

@ -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;
}
}