diff options
Diffstat (limited to 'PBNFile.cs')
-rw-r--r-- | PBNFile.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/PBNFile.cs b/PBNFile.cs new file mode 100644 index 0000000..3f68756 --- /dev/null +++ b/PBNFile.cs @@ -0,0 +1,19 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.IO;
+
+namespace BCDD
+{
+ class PBNFile
+ {
+ private String filename;
+
+ public PBNFile(String filename)
+ {
+ this.filename = filename;
+ }
+
+ }
+}
|