Noah Petherbridge
678326540b
The title screen is now responsive to landscape mode. If the window is not tall enough to show all the menu buttons (~600px) it will switch to a horizontal layout with the title on the left and buttons on the right. WIP "Story Mode" button that brings up a Level Packs selection window.
20 lines
399 B
Go
20 lines
399 B
Go
// Package enum defines all the little enum types used throughout Doodle.
|
|
package enum
|
|
|
|
// DrawingType tells the EditorScene whether the currently open drawing is
|
|
// a Level or a Doodad.
|
|
type DrawingType int
|
|
|
|
// EditorType values.
|
|
const (
|
|
LevelDrawing DrawingType = iota
|
|
DoodadDrawing
|
|
)
|
|
|
|
// File extensions
|
|
const (
|
|
LevelExt = ".level"
|
|
DoodadExt = ".doodad"
|
|
LevelPackExt = ".levelpack"
|
|
)
|