Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization/ICanvas.cs @ 1222

Last change on this file since 1222 was 862, checked in by shofstad, 15 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.