Files
lifeEngine/src/Controllers/ControlModes.js
Chris Gallegos 869cc85d04 Randomized Creature Generation
Adds a random organism generator that is accessible through the editor control panel.
This generator gives the user to generate an entire world of random organisms for selection to act upon.
2021-11-21 01:36:20 -08:00

13 lines
180 B
JavaScript

const Modes = {
None: 0,
FoodDrop: 1,
WallDrop: 2,
ClickKill: 3,
Select: 4,
Edit: 5,
Clone: 6,
Drag: 7,
Randomize: 8,
}
module.exports = Modes;