17 lines
378 B
Go
17 lines
378 B
Go
package intf
|
|
|
|
// Feature is the interface for operating shared.Feature
|
|
type Feature interface {
|
|
GetID() int64
|
|
GetWin() int64
|
|
SetWin(win int64) Feature
|
|
GetSeqID() int64
|
|
SetSeqID(seqID int64) Feature
|
|
GetLifetime() int64
|
|
SetLifetime(lifetime int64) Feature
|
|
GetVisiable() bool
|
|
SetVisiable(visiable bool) Feature
|
|
GetImageable() bool
|
|
SetImageable(imageable bool) Feature
|
|
}
|