mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-28 01:51:46 +00:00
15 lines
425 B
Plaintext
15 lines
425 B
Plaintext
//default_unfasten_wrench() return defines
|
|
/// Return if unfasten failed, but allow attack chain to continue
|
|
#define CANT_UNFASTEN 0
|
|
/// Return if unfasten failed, and stop attack chain
|
|
#define FAILED_UNFASTEN 1
|
|
/// Return if unfasten succeeded
|
|
#define SUCCESSFUL_UNFASTEN 2
|
|
|
|
// Defines for the construction component
|
|
#define FORWARD 1
|
|
#define BACKWARD -1
|
|
|
|
#define ITEM_DELETE "delete"
|
|
#define ITEM_MOVE_INSIDE "move_inside"
|