2024-08-17 14:51:18 -04:00
|
|
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
|
|
|
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
|
|
|
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
|
|
|
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
|
|
|
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
|
|
|
|
// Magicbane Emulator Project © 2013 - 2024
|
|
|
|
|
// www.magicbane.com
|
|
|
|
|
|
2024-08-17 16:33:20 -04:00
|
|
|
package engine.wpak.data;
|
2024-08-17 14:51:18 -04:00
|
|
|
|
2024-08-17 15:58:48 -04:00
|
|
|
import engine.mbEnums;
|
|
|
|
|
|
2024-08-22 16:34:05 -04:00
|
|
|
public class PowerEntry {
|
2024-08-17 15:58:48 -04:00
|
|
|
public mbEnums.PowerType power_type;
|
2024-08-17 14:51:18 -04:00
|
|
|
public int icon;
|
2024-08-17 15:13:32 -04:00
|
|
|
public String powerBase;
|
2024-08-17 14:51:18 -04:00
|
|
|
}
|