Skip to content

Commit

Permalink
tuple.create
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentlb committed Jun 1, 2024
1 parent 31694dd commit 60a9293
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Example/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ void main()
}
""";

var file = new Tuple<string, string>("filename.frag", shader);
var file = Tuple.Create("filename.frag", shader);
var options = Minifier.ParseOptions(new[] { "--format", "text" });
var minifier = new Minifier(options, new[] { file });
minifier.Format(System.Console.Out);

0 comments on commit 60a9293

Please sign in to comment.