mirror of
https://github.com/ComfyFactory/ComfyFactorio.git
synced 2025-01-10 00:43:27 +02:00
14 lines
359 B
Lua
14 lines
359 B
Lua
|
|
local Event = require 'utils.event'
|
|
|
|
local Public = {}
|
|
|
|
-- just beginning this, gotta finish reformulating the gui updates in terms of events:
|
|
|
|
local enum = {
|
|
update_crew_progress_gui = Event.generate_event_name('update_crew_progress_gui'),
|
|
update_crew_fuel_gui = Event.generate_event_name('update_crew_fuel_gui'),
|
|
}
|
|
Public.enum = enum
|
|
|
|
return Public |