001package com.fs.starfarer.api.combat;
002
003
004/**
005 * @author Alex Mosolov
006 *
007 * Copyright 2012 Fractal Softworks, LLC
008 */
009public interface CombatEnginePlugin {
010        
011        /**
012         * Deprecated, not guaranteed to be called before advance() is called for
013         * an EveryFrameCombatPlugin. Can still be relied on if the
014         * EveryFrameCombatPlugin.advance() method checks for any fields being set in
015         * init() being null. 
016         * @param engine
017         */
018        @Deprecated public void init(CombatEngineAPI engine);
019}