diff options
author | Shav Kinderlehrer <[email protected]> | 2023-08-09 16:01:15 -0400 |
---|---|---|
committer | Shav Kinderlehrer <[email protected]> | 2023-08-09 16:01:15 -0400 |
commit | 85f830ce4730da0489bc14d8726de7fb2dd0fc38 (patch) | |
tree | 811707c736ce7098b5655f018219c5093518f0a0 /source/opt.d | |
parent | 24c94e510ab9c016542b287e060c992c195d7987 (diff) | |
download | prim-85f830ce4730da0489bc14d8726de7fb2dd0fc38.tar.gz prim-85f830ce4730da0489bc14d8726de7fb2dd0fc38.zip |
Add styles
Diffstat (limited to 'source/opt.d')
-rw-r--r-- | source/opt.d | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source/opt.d b/source/opt.d new file mode 100644 index 0000000..1236ac9 --- /dev/null +++ b/source/opt.d @@ -0,0 +1,12 @@ +module prim.opt; + +struct Opts { + bool ps1; + bool rps1; + bool preexec; + + int col; + int row; + + int status; +} |