mirror of
https://github.com/ComfyFactory/ComfyFactorio.git
synced 2025-01-08 00:39:30 +02:00
16 lines
510 B
Lua
16 lines
510 B
Lua
-- This file is part of thesixthroc's Pirate Ship softmod, licensed under GPLv3 and stored at https://github.com/danielmartin0/ComfyFactorio-Pirates.
|
|
|
|
|
|
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 |