mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2025-08-15 10:47:21 +00:00
22 lines
798 B
Lua
22 lines
798 B
Lua
-- The order of the declarations is important here. Don't touch it.
|
|
|
|
--- Declare the event dispatcher based on the EVENT class
|
|
_EVENTDISPATCHER = EVENT:New() -- Core.Event#EVENT
|
|
|
|
--- Declare the timer dispatcher based on the SCHEDULEDISPATCHER class
|
|
_SCHEDULEDISPATCHER = SCHEDULEDISPATCHER:New() -- Core.Timer#SCHEDULEDISPATCHER
|
|
|
|
--- Declare the main database object, which is used internally by the MOOSE classes.
|
|
_DATABASE = DATABASE:New() -- Core.Database#DATABASE
|
|
|
|
_SETTINGS = SETTINGS:Set()
|
|
|
|
package.path = package.path..";D:\\GitHub\\MOOSE_MISSIONS\\SPA - Spawning\\DEBUG test\\?.lua;"
|
|
|
|
|
|
|
|
local initconnection = require("debugger")
|
|
initconnection( "127.0.0.1", 10000, "dcsserver", nil, "win", "C:/Users/svenv/AppData/Local/Temp/DCS/Mission/l10n/DEFAULT" )
|
|
|
|
print("Debugger is configured!")
|