Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Refactoring-Ticket419/HeuristicLab.Visualization/ICanvas.cs @ 1075

Last change on this file since 1075 was 862, checked in by shofstad, 16 years ago

added code comments (#406)

File size: 262 bytes
Line 
1using System.Drawing;
2
3namespace HeuristicLab.Visualization {
4  /// <summary>
5  /// ICanvas Interface
6  /// </summary>
7  public interface ICanvas {
8    void Draw(Graphics graphics, Rectangle viewport);
9    WorldShape WorldShape { get; set; }
10  }
11}
Note: See TracBrowser for help on using the repository browser.