Added Unity project files

This commit is contained in:
2026-06-07 16:58:24 +01:00
parent 3cc05d260b
commit 23bbcab156
3942 changed files with 453676 additions and 0 deletions

View File

@ -0,0 +1,4 @@
namespace VRC.SDK3.ClientSim
{
public interface IClientSimEvent { }
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 91bfef23cc10ff640880e382bf79c390
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,11 @@
using System;
namespace VRC.SDK3.ClientSim
{
public interface IClientSimEventDispatcher
{
void Subscribe<T>(Action<T> eventHandler) where T : IClientSimEvent;
void Unsubscribe<T>(Action<T> eventHandler) where T : IClientSimEvent;
void SendEvent<T>(T clientSimEvent) where T : IClientSimEvent;
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: b6db79d31b2023245b6131565300da0e
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant: