11 lines
135 B
C#
11 lines
135 B
C#
|
namespace RoR2;
|
||
|
|
||
|
public interface IChestBehavior
|
||
|
{
|
||
|
bool HasRolledPickup(PickupIndex pickupIndex);
|
||
|
|
||
|
void Roll();
|
||
|
|
||
|
void ItemDrop();
|
||
|
}
|