mirror of
https://github.com/ComfyFactory/ComfyFactorio.git
synced 2025-01-10 00:43:27 +02:00
13 lines
337 B
Lua
13 lines
337 B
Lua
|
|
local Event = require 'utils.event'
|
|
|
|
local Public = {}
|
|
|
|
-- 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 |