Move some base classes into the API
Add Javadocs for API classes that didn't already have them Redo 'nother redo Another redo Update ItemSigil.java Last one, I swear Fix
This commit is contained in:
parent
6a40dbab0a
commit
0383f0fb31
41 changed files with 331 additions and 343 deletions
|
@ -14,10 +14,16 @@ public class BoundToolEvent extends Event
|
|||
this.player = player;
|
||||
}
|
||||
|
||||
/**
|
||||
* This event is called when a {@link WayofTime.bloodmagic.item.ItemBoundTool}
|
||||
* is being charged.
|
||||
*
|
||||
* If canceled, will result in the charging being canceled.
|
||||
*/
|
||||
|
||||
@Cancelable
|
||||
public static class Charge extends BoundToolEvent
|
||||
{
|
||||
|
||||
public ItemStack result;
|
||||
|
||||
public Charge(EntityPlayer player, ItemStack result)
|
||||
|
@ -27,10 +33,16 @@ public class BoundToolEvent extends Event
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* This event is called when a {@link WayofTime.bloodmagic.item.ItemBoundTool}'s
|
||||
* charge is released.
|
||||
*
|
||||
* If canceled, will result in the charge not being released.
|
||||
*/
|
||||
|
||||
@Cancelable
|
||||
public static class Release extends BoundToolEvent
|
||||
{
|
||||
|
||||
public final ItemStack boundTool;
|
||||
public int charge;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue