Added NetworkManager
This commit is contained in:
12
Assets/Scripts/SyncedObject.cs
Normal file
12
Assets/Scripts/SyncedObject.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user