290 Начало добавления интерфейса событий

This commit is contained in:
prospero78su 2019-05-07 12:49:23 +03:00
parent 5cbc3efc3c
commit bd08138ed0

View File

@ -0,0 +1,19 @@
package пакИнтерфейсы
//HitResult -- Used in mouse click events
type HitResult int
//ИСобытие -- интерфейс для событий
type ИСобытие interface{
Type()
Mod()
Msg()
X()
Y()
Err()
Key()
Ch()
Width()
Height()
Target()
}