mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-13 12:06:31 -05:00
13 lines
159 B
Go
13 lines
159 B
Go
|
package d2interface
|
||
|
|
||
|
import (
|
||
|
"github.com/gravestench/akara"
|
||
|
)
|
||
|
|
||
|
type Scene interface {
|
||
|
akara.SystemInitializer
|
||
|
Key() string
|
||
|
Booted() bool
|
||
|
Paused() bool
|
||
|
}
|