using System; using System.Collections.Generic; using System.Text; namespace Simian { /// /// Abstract base for rendering plugins /// public interface ISimianExtension { /// /// Called when the simulator is initializing /// void Start(); /// /// Called when the simulator is shutting down /// void Stop(); } }