2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2026-04-03 17:58:21 +00:00
Files
esiur-dart/lib/src/Core/IDestructible.dart
2019-12-02 03:29:30 +03:00

10 lines
156 B
Dart

// library esyur;
import 'IEventHandler.dart';
typedef DestroyedEvent(sender);
abstract class IDestructible extends IEventHandler
{
void destroy();
}