mirror of
https://github.com/OMGeeky/ATCS.git
synced 2025-12-27 14:58:55 +01:00
32 lines
612 B
Java
32 lines
612 B
Java
package com.gpl.rpg.atcontentstudio.model.maps;
|
|
|
|
import java.awt.Image;
|
|
|
|
import com.gpl.rpg.atcontentstudio.model.GameDataElement;
|
|
import com.gpl.rpg.atcontentstudio.ui.DefaultIcons;
|
|
|
|
|
|
public class RestArea extends MapObject {
|
|
|
|
public RestArea(tiled.core.MapObject obj) {}
|
|
|
|
@Override
|
|
public void link() {}
|
|
|
|
@Override
|
|
public Image getIcon() {
|
|
return DefaultIcons.getRestIcon();
|
|
}
|
|
|
|
@Override
|
|
public void elementChanged(GameDataElement oldOne, GameDataElement newOne) {
|
|
|
|
}
|
|
|
|
@Override
|
|
public void savePropertiesInTmxObject(tiled.core.MapObject tmxObject) {
|
|
|
|
}
|
|
|
|
}
|