Make alterations to libzni
This commit is contained in:
parent
7b776ecfea
commit
0638f7e642
19 changed files with 1824 additions and 183 deletions
15
Serialization/Serializable.cs
Normal file
15
Serialization/Serializable.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
using LibZNI.Serialization.ZNIFile;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace LibZNI.Serialization
|
||||
{
|
||||
public abstract class Serializable
|
||||
{
|
||||
public abstract void save(Folder f);
|
||||
public abstract void load(Folder f);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue