Config.cs 300 B

12345678910111213
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace ConfigReader
  5. {
  6. public static class Config
  7. {
  8. //0=all, 1=No iteration log, 2 = Less info, 3 = Warning+Error, 4 = Error, 5 = Release
  9. public static ushort LogLevel { get; set; }
  10. }
  11. }