No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BoltFlowPaths.cs 290B

123456789101112
  1. using System.IO;
  2. namespace Unity.VisualScripting
  3. {
  4. [Plugin(BoltFlow.ID)]
  5. public class BoltFlowPaths : PluginPaths
  6. {
  7. public BoltFlowPaths(Plugin plugin) : base(plugin) { }
  8. public string unitOptions => Path.Combine(transientGenerated, "UnitOptions.db");
  9. }
  10. }