17 lines
288 B
C#
Executable file
17 lines
288 B
C#
Executable file
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace ABI.CCK.Components
|
|
{
|
|
public class CVRObjectSync : MonoBehaviour
|
|
{
|
|
|
|
[HideInInspector]
|
|
public string syncOwner;
|
|
|
|
[HideInInspector]
|
|
public string guid = "";
|
|
|
|
|
|
}
|
|
}
|