|
@@ -49,8 +49,12 @@ namespace TaleWorlds.TwoDimension.Standalone
|
|
|
49
49
|
|
|
50
50
|
extern Vec2 IInputManager.GetResolution();
|
|
51
51
|
|
|
52
|
+
extern Vec2 IInputManager.GetDesktopResolution();
|
|
53
|
+
|
|
52
54
|
extern void IInputManager.SetCursorPosition(int x, int y);
|
|
53
55
|
|
|
54
56
|
extern void IInputManager.SetCursorFriction(float frictionValue);
|
|
57
|
+
|
|
58
|
+
extern InputKey IInputManager.GetControllerClickKey();
|
|
55
59
|
}
|
|
56
60
|
}
|
|
@@ -39,5 +39,13 @@ namespace TaleWorlds.TwoDimension.Standalone
|
|
|
39
39
|
extern void ITwoDimensionPlatform.DrawDebugText(string text);
|
|
40
40
|
|
|
41
41
|
extern bool ITwoDimensionPlatform.IsDebugModeEnabled();
|
|
42
|
+
|
|
43
|
+
extern bool ITwoDimensionPlatform.DrawDebugTreeNode(string text);
|
|
44
|
+
|
|
45
|
+
extern void ITwoDimensionPlatform.DrawCheckbox(string label, ref bool isChecked);
|
|
46
|
+
|
|
47
|
+
extern bool ITwoDimensionPlatform.IsDebugItemHovered();
|
|
48
|
+
|
|
49
|
+
extern void ITwoDimensionPlatform.PopDebugTreeNode();
|
|
42
50
|
}
|
|
43
51
|
}
|