VRResourceEntity.cs 338 B

1234567891011121314151617181920
  1. using System.Diagnostics;
  2. using KYFramework;
  3. namespace VRPlatform
  4. {
  5. public class VRResourceEntity : Entity
  6. {
  7. public string VRResourceId;
  8. public string Url;
  9. public Process Process;
  10. public string FilePath;
  11. public string Exe;
  12. public string Description;
  13. }
  14. }