Loggest thy stuff
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
639 B

enum Status {
Blocked = 0,
Available = 1,
Inactive = 2,
Active = 3,
Completed = 4,
Failed = 5,
Dropped = 6,
}
// Blocked -> Available -> Active -> Completed
// -> Failed
// -> Dropped
// -> Inactive -> Active
//
// (X) Create basic furniture [S v] [/] [X]
// ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨
// There needs to be a servicable library of
// furntirue for this project
//
// Asset Complexity HS Practice
// [ ] [ ] 0
export default Status