mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
24 lines
378 B
Java
24 lines
378 B
Java
package com.hbm.wiaj.actions;
|
|
|
|
import com.hbm.wiaj.JarScene;
|
|
import com.hbm.wiaj.WorldInAJar;
|
|
|
|
public class ActionRemoveActor implements IJarAction {
|
|
|
|
int id;
|
|
|
|
public ActionRemoveActor(int id) {
|
|
this.id = id;
|
|
}
|
|
|
|
@Override
|
|
public int getDuration() {
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public void act(WorldInAJar world, JarScene scene) {
|
|
scene.script.actors.remove(id);
|
|
}
|
|
}
|