Add types package

This commit is contained in:
qowevisa 2024-03-14 00:03:11 +02:00
parent b08ee934b7
commit e666ac8e3b

6
types/ui.go Normal file
View File

@ -0,0 +1,6 @@
package types
type UI interface {
Draw()
Run()
}