001package com.fs.starfarer.api;
002
003public interface EveryFrameScriptWithCleanup extends EveryFrameScript {
004
005 /**
006 * Called when an entity that has this script attached to it is removed from the campaign engine.
007 */
008 void cleanup();
009}