mirror of
https://github.com/Refactorio/RedMew.git
synced 2024-12-12 10:04:40 +02:00
13 lines
310 B
Lua
13 lines
310 B
Lua
|
-- Info on the data lifecycle and how we use it: https://github.com/Refactorio/RedMew/wiki/The-data-lifecycle
|
||
|
-- Non-applicable stages are commented out.
|
||
|
_STAGE = {
|
||
|
--settings = 1,
|
||
|
--data = 2,
|
||
|
--migration = 3,
|
||
|
control = 4,
|
||
|
init = 5,
|
||
|
load = 6,
|
||
|
--config_change = 7,
|
||
|
runtime = 8
|
||
|
}
|