2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2025-09-29 10:43:18 +00:00
Files
esiur-dart/lib/src/Core/IDestructible.dart
2020-11-15 04:41:30 +03:00

10 lines
156 B
Dart

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