VRResourcesComponent.cs 251 B

12345678910
  1. using System.Collections.Generic;
  2. using KYFramework;
  3. namespace VRPlatform
  4. {
  5. public class VRResourcesComponent : Component
  6. {
  7. public Dictionary<string, VRResourceEntity> Resources = new Dictionary<string, VRResourceEntity>();
  8. }
  9. }