123456789101112131415 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Controls;
- using SAGA.Models.GplotElement;
- namespace SAGA.GplotRelationComputerManage.Draw
- {
- public interface IDraw<T> where T :TElement
- {
- void Draw(T element, Canvas canvas);
- }
- }
|