7 lines
100 B
Dart
7 lines
100 B
Dart
class Dot {
|
|
//Data
|
|
String _name = "";
|
|
int num = -1;
|
|
Map<int, int> _ln = <int, int>{};
|
|
***
|