Added NetworkManager

This commit is contained in:
2025-12-28 19:35:18 +01:00
parent 129ef16714
commit 74223c8139
16 changed files with 1224 additions and 367 deletions

View File

@@ -0,0 +1,12 @@
using System.Collections;
using UdonSharp;
using UnityEngine;
namespace Assets.Scripts
{
public abstract class SyncedObject : UdonSharpBehaviour
{
public abstract void AppendSyncedData(byte[][] data, ref int index);
public abstract bool SetSyncedData(byte[] data, ref int index);
}
}