2022-06-01 19:50:36 +01:00
|
|
|
-- This file is part of thesixthroc's Pirate Ship softmod, licensed under GPLv3 and stored at https://github.com/danielmartin0/ComfyFactorio-Pirates.
|
|
|
|
|
2022-03-13 01:44:32 +00:00
|
|
|
|
|
|
|
local Event = require 'utils.event'
|
|
|
|
|
|
|
|
local Public = {}
|
|
|
|
|
2022-03-19 21:20:55 +00:00
|
|
|
-- just beginning this, gotta finish reformulating the gui updates in terms of events:
|
|
|
|
|
2022-03-13 01:44:32 +00:00
|
|
|
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
|