mirror of
https://github.com/sfall-team/sfall.git
synced 2026-07-27 16:52:34 -07:00
Updated sfall debug editor (from Mr.Stalin)
Formatted the code of sfall debug editor.
This commit is contained in:
+10
-5
@@ -12,7 +12,7 @@ namespace FalloutClient {
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
|
||||
if(args.Length==1&&args[0]=="-debugedit") {
|
||||
if (args.Length == 1 && args[0] == "-debugedit") {
|
||||
Application.Run(new DebugEditor(new EditorConnection()));
|
||||
} else {
|
||||
throw new Exception("Multiplayer is no longer supported");
|
||||
@@ -21,8 +21,13 @@ namespace FalloutClient {
|
||||
}
|
||||
|
||||
enum DataTypeSend {
|
||||
Mouse=0, LMouseDown=1, LMouseUp=2, RMouseDown=3, RMouseUp=4, TakeChar=5, ReleaseChar=6,
|
||||
SetGlobal=0, SetMapVar=1, RetrieveCritter=2, SetCritter=3, SetSGlobal=4, GetArray=9, SetArray=10,
|
||||
Exit=254
|
||||
}
|
||||
SetGlobal = 0,
|
||||
SetMapVar = 1,
|
||||
RetrieveCritter = 2,
|
||||
SetCritter = 3,
|
||||
SetSGlobal = 4,
|
||||
GetArray = 9,
|
||||
SetArray = 10,
|
||||
Exit = 254
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user