Download LangtonsAntSimulator.zip version 2.0.0.0, last updated 08/03/2011 (366.76 KB)

Download
  • md5: 347f7d65e83267424d0afa1dffdaae45
using System.Drawing;

namespace LangontsAntSimulator
{
  public interface ISimulation
  {
    void Start();
    void Stop();
    void Pause();
    void NextMove();
    Rectangle Region { get; set; }
    IBlock[] Blocks { get; set; }
    void Load(string fileName);
    void Save(string fileName);
    bool IsRunning { get;  }
    bool IsPaused { get; }
    ISimulationHost Host { get; set; }
    int Speed { get; set; }
    IActor[] Actors { get; set; }
    int Move { get; set; }
    bool ShowOutput { get; set; }
  }
}

Donate

Donate