This repository has been archived on 2024-10-31. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
LibZontreck/src/main/java/dev/zontreck/libzontreck/currency/events/BankAccountCreatedEvent.java
2024-02-14 04:34:49 -07:00

14 lines
295 B
Java

package dev.zontreck.libzontreck.currency.events;
import dev.zontreck.libzontreck.currency.Account;
import net.minecraftforge.eventbus.api.Event;
public class BankAccountCreatedEvent extends Event
{
public Account account;
public BankAccountCreatedEvent(Account act)
{
account=act;
}
}