mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-09 18:03:49 +02:00
* refactor: merge two overlay offScreenBrowser into one * Electron support for shared overlay * Separate overlay into its own process * fix: invalid overlay texture size * Handle duplicate processes * Remove logging --------- Co-authored-by: pa <maplenagisa@gmail.com> Co-authored-by: rs189 <35667100+rs189@users.noreply.github.com>
17 lines
565 B
C#
17 lines
565 B
C#
using System.Collections.Generic;
|
|
|
|
namespace VRCX;
|
|
|
|
public abstract partial class AppApiVr
|
|
{
|
|
public static AppApiVr Instance;
|
|
public abstract void Init();
|
|
public abstract void VrInit();
|
|
public abstract void ToggleSystemMonitor(bool enabled);
|
|
public abstract float CpuUsage();
|
|
public abstract string[][] GetVRDevices();
|
|
public abstract double GetUptime();
|
|
public abstract string CurrentCulture();
|
|
public abstract string CustomVrScript();
|
|
public abstract List<KeyValuePair<string, string>> GetExecuteVrOverlayFunctionQueue();
|
|
} |