14 lines
383 B
C#
14 lines
383 B
C#
using WarmlyLocomotive.DrawningObjects;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
namespace WarmlyLocomotive
|
|
{
|
|
/// <summary>
|
|
/// Делегат для передачи объекта
|
|
/// </summary>
|
|
public delegate void WarmlyLocomotiveDelegate(DrawningWarmlyLocomotive warmlylocomotive);
|
|
}
|