dlc content

This commit is contained in:
2026-01-08 01:08:55 +01:00
parent 69bcf0920a
commit 154eb55283
4 changed files with 38 additions and 6 deletions

View File

@@ -21,10 +21,10 @@ import (
var s embed.FS
type Config struct {
X int `cfg:"{'name':'x','desc':'x offset','default':0}"`
Y int `cfg:"{'name':'y','desc':'y offset','default':0}"`
Width int `cfg:"{'name':'width','desc':'search area width','default':2560}"`
Height int `cfg:"{'name':'height','desc':'search area height','default':1440}"`
X int `cfg:"{'name':'x','desc':'x offset','default':0,'short':'x'}"`
Y int `cfg:"{'name':'y','desc':'y offset','default':0,'short':'y'}"`
Width int `cfg:"{'name':'width','desc':'search area width','default':2560,'short':'w'}"`
Height int `cfg:"{'name':'height','desc':'search area height','default':1440,'short':'h'}"`
Save bool `cfg:"{'name':'save','desc':'save ocr image as output.png','default':false}"`
List bool `cfg:"{'name':'list','desc':'list all recipes','default':false,'short':'l'}"`
Recipe string `cfg:"{'name':'recipe','desc':'specific recipe to make','short':'r','default':''}"`