mirror of
https://github.com/esiur/esiur-dart.git
synced 2025-05-06 20:02:59 +00:00
10 lines
153 B
Dart
10 lines
153 B
Dart
library esiur;
|
|
|
|
import 'IEventHandler.dart';
|
|
|
|
typedef DestroyedEvent(sender);
|
|
|
|
abstract class IDestructible extends IEventHandler
|
|
{
|
|
void destroy();
|
|
} |