aboutsummaryrefslogtreecommitdiff
path: root/cs-dotnet/src/gatsobject.cs
diff options
context:
space:
mode:
Diffstat (limited to 'cs-dotnet/src/gatsobject.cs')
-rw-r--r--cs-dotnet/src/gatsobject.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/cs-dotnet/src/gatsobject.cs b/cs-dotnet/src/gatsobject.cs
new file mode 100644
index 0000000..f782f95
--- /dev/null
+++ b/cs-dotnet/src/gatsobject.cs
@@ -0,0 +1,10 @@
1using System.IO;
2
3namespace Com.Xagasoft.Gats
4{
5 public abstract class GatsObject
6 {
7 public abstract void Read( Stream s, byte cType );
8 public abstract void Write( Stream s );
9 }
10}