cvr-props/Assets/ABI.CCK/Components/CVRObjectSync.cs

18 lines
288 B
C#
Raw Normal View History

2023-01-22 16:38:23 +01:00
using System.Collections.Generic;
using UnityEngine;
namespace ABI.CCK.Components
{
public class CVRObjectSync : MonoBehaviour
{
[HideInInspector]
public string syncOwner;
[HideInInspector]
public string guid = "";
}
}