summaryrefslogtreecommitdiff
path: root/queue.go
diff options
context:
space:
mode:
Diffstat (limited to 'queue.go')
-rw-r--r--queue.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/queue.go b/queue.go
index 11b9aa8..f854de5 100644
--- a/queue.go
+++ b/queue.go
@@ -7,6 +7,11 @@ type Type int
const (
Task Type = iota
Plot
+ Heading
+ Kill
+ Market
+ Sell
+ Byuing
)
type Queue struct {
@@ -14,3 +19,11 @@ type Queue struct {
Duration int
Title string
}
+
+func Dequeue(q Queue) {
+ switch q.Type {
+ case Kill:
+ case Byuing:
+ case Market, Sell:
+ }
+}