You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
346 B
Java
13 lines
346 B
Java
package com.zivilon.cinder_loe.util;
|
|
|
|
import com.zivilon.cinder_loe.droptables.DropTable;
|
|
|
|
public interface ILootableEntity {
|
|
DropTable get_drop_table();
|
|
void set_drop_table(DropTable table);
|
|
int get_last_pickpocket();
|
|
void set_last_pickpocket(int i);
|
|
Float get_pickpocket_chance();
|
|
void set_pickpocket_chance(Float f);
|
|
}
|