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.

BoltFlowManifest.cs 477B

12345678910111213
  1. namespace Unity.VisualScripting
  2. {
  3. [Plugin(BoltFlow.ID)]
  4. public sealed class BoltFlowManifest : PluginManifest
  5. {
  6. private BoltFlowManifest(BoltFlow plugin) : base(plugin) { }
  7. public override string name => "Visual Scripting Flow";
  8. public override string author => "";
  9. public override string description => "Flow-graph based visual scripting.";
  10. public override SemanticVersion version => PackageVersionUtility.version;
  11. }
  12. }