mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-09 10:06:35 -05:00
14 lines
200 B
Go
14 lines
200 B
Go
package d2interface
|
|
|
|
import (
|
|
"github.com/gravestench/akara"
|
|
)
|
|
|
|
// Scene is an extension of akara.System
|
|
type Scene interface {
|
|
akara.SystemInitializer
|
|
Key() string
|
|
Booted() bool
|
|
Paused() bool
|
|
}
|