PlayerSettings.cs 228 B

1234567891011
  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. namespace VEngine
  4. {
  5. public class PlayerSettings : ScriptableObject
  6. {
  7. public List<string> assets = new List<string>();
  8. public bool offlineMode;
  9. }
  10. }