Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros
WindowService.cs
Go to the documentation of this file.
2
3namespace ReLogic.OS.OSX;
4
6{
7 public float GetScaling()
8 {
9 return 1f;
10 }
11
12 public void SetQuickEditEnabled(bool enabled)
13 {
14 }
15
16 public void SetUnicodeTitle(GameWindow window, string title)
17 {
18 window.Title = title;
19 }
20
21 public void StartFlashingIcon(GameWindow window)
22 {
23 }
24
25 public void StopFlashingIcon(GameWindow window)
26 {
27 }
28
29 public void HideConsole()
30 {
31 }
32}
void StopFlashingIcon(GameWindow window)
void SetQuickEditEnabled(bool enabled)
void StartFlashingIcon(GameWindow window)
void SetUnicodeTitle(GameWindow window, string title)