Files

10 lines
217 B
C#
Raw Permalink Normal View History

2024-01-23 02:56:26 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Mirror
{
public class Indexer : NetworkBehaviour
{
public Dictionary<string, Object> dictionary = new();
}
}