Nikita Potapov 01ea98b1c7 Event work
2022-11-14 19:14:12 +04:00

14 lines
307 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Boats
{
/// <summary>
/// Делегат для передачи объекта-лодки
/// </summary>
public delegate void BoatDelegate(DrawingBoat boat);
}