doodle/cmd/doodad/commands/consts.go
Noah Petherbridge 5bf7d554f7 Add doodad.exe binary and PNG to Drawing Converter
Adds the `doodad` binary which will be a command line tool to work with
Doodads and Levels and assist with development.

The `doodad` binary has subcommands like git and the first command is
`convert` which converts between image files (PNG or BMP) and Doodle
drawing files (Level or Doodad). You can "screenshot" a level into a PNG
or you can initialize a new drawing from a PNG.
2018-10-16 12:26:41 -07:00

9 lines
113 B
Go

package commands
const (
extLevel = ".level"
extDoodad = ".doodad"
extPNG = ".png"
extBMP = ".bmp"
)