└── addons └── SimpleTODO ├── ColumnHeader.gd ├── ColumnHeader.tscn ├── ItemPlacementHolder.tscn ├── SimpleTODO.gd ├── TODO.gd ├── TODO.tscn ├── TODOColumn.gd ├── TODOColumn.tscn ├── TODOItem.gd ├── TODOItem.tscn ├── TODOPopup.gd └── plugin.cfg /addons/SimpleTODO/ColumnHeader.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoBeWi/Godot-Simple-TODO/HEAD/addons/SimpleTODO/ColumnHeader.gd -------------------------------------------------------------------------------- /addons/SimpleTODO/ColumnHeader.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoBeWi/Godot-Simple-TODO/HEAD/addons/SimpleTODO/ColumnHeader.tscn -------------------------------------------------------------------------------- /addons/SimpleTODO/ItemPlacementHolder.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoBeWi/Godot-Simple-TODO/HEAD/addons/SimpleTODO/ItemPlacementHolder.tscn -------------------------------------------------------------------------------- /addons/SimpleTODO/SimpleTODO.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoBeWi/Godot-Simple-TODO/HEAD/addons/SimpleTODO/SimpleTODO.gd -------------------------------------------------------------------------------- /addons/SimpleTODO/TODO.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoBeWi/Godot-Simple-TODO/HEAD/addons/SimpleTODO/TODO.gd -------------------------------------------------------------------------------- /addons/SimpleTODO/TODO.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoBeWi/Godot-Simple-TODO/HEAD/addons/SimpleTODO/TODO.tscn -------------------------------------------------------------------------------- /addons/SimpleTODO/TODOColumn.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoBeWi/Godot-Simple-TODO/HEAD/addons/SimpleTODO/TODOColumn.gd -------------------------------------------------------------------------------- /addons/SimpleTODO/TODOColumn.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoBeWi/Godot-Simple-TODO/HEAD/addons/SimpleTODO/TODOColumn.tscn -------------------------------------------------------------------------------- /addons/SimpleTODO/TODOItem.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoBeWi/Godot-Simple-TODO/HEAD/addons/SimpleTODO/TODOItem.gd -------------------------------------------------------------------------------- /addons/SimpleTODO/TODOItem.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoBeWi/Godot-Simple-TODO/HEAD/addons/SimpleTODO/TODOItem.tscn -------------------------------------------------------------------------------- /addons/SimpleTODO/TODOPopup.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoBeWi/Godot-Simple-TODO/HEAD/addons/SimpleTODO/TODOPopup.gd -------------------------------------------------------------------------------- /addons/SimpleTODO/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoBeWi/Godot-Simple-TODO/HEAD/addons/SimpleTODO/plugin.cfg --------------------------------------------------------------------------------