aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Protobuf/CompilerProgressEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Protobuf/CompilerProgressEventArgs.cs')
-rw-r--r--Software/Visual_Studio/Tango.Protobuf/CompilerProgressEventArgs.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Protobuf/CompilerProgressEventArgs.cs b/Software/Visual_Studio/Tango.Protobuf/CompilerProgressEventArgs.cs
new file mode 100644
index 000000000..bd56d360f
--- /dev/null
+++ b/Software/Visual_Studio/Tango.Protobuf/CompilerProgressEventArgs.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.Protobuf
+{
+ public class CompilerProgressEventArgs : EventArgs
+ {
+ public int Current { get; set; }
+ public int Total { get; set; }
+ public String File { get; set; }
+ }
+}