Skip to content

Commit

Permalink
Added specific file enum to project
Browse files Browse the repository at this point in the history
  • Loading branch information
darlandieterich committed Dec 5, 2020
1 parent 0808beb commit 82ec670
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/enums.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
//Type effects
export const DrunkerEffects = {
BLUR: "Blur",
DIZZY: "Dizzy",
DISAPPEAR: "Disappear",
SHAKE: "Shake",
SPIN: "Spin",
PULSE: "Pulse",
AUTO: "Auto"
};

//Define velocity of effect
export const DrunkerSpeed = {
SLOW: "Slow",
NORMAL: "Normal",
FAST: "Fast"
}

//Define the type of Drunker
export const DrunkerType = {
MODERATE: "Moderate", //One time
UNTILDROP: "UntilDrop" //Recursive mode
}

0 comments on commit 82ec670

Please sign in to comment.