001package com.fs.starfarer.api.combat;
002
003
004public interface GuidedMissileAI {
005        CombatEntityAPI getTarget();
006        
007        /**
008         * Missile should switch to following target if this method is called.
009         * Called as a result of flares causing distractions and such.
010         * @param target
011         */
012        void setTarget(CombatEntityAPI target);
013}