v0.80.30
This commit is contained in:
@@ -1,31 +0,0 @@
|
||||
namespace AssetStudio
|
||||
{
|
||||
public static class YAMLMappingNodeExtensions
|
||||
{
|
||||
public static void AddSerializedVersion(this YAMLMappingNode _this, int version)
|
||||
{
|
||||
if(version > 1)
|
||||
{
|
||||
_this.Add(SerializedVersionName, version);
|
||||
}
|
||||
}
|
||||
|
||||
public static void ForceAddSerializedVersion(this YAMLMappingNode _this, int version)
|
||||
{
|
||||
if (version > 0)
|
||||
{
|
||||
_this.Add(SerializedVersionName, version);
|
||||
}
|
||||
}
|
||||
|
||||
public static void InsertSerializedVersion(this YAMLMappingNode _this, int version)
|
||||
{
|
||||
if(version > 1)
|
||||
{
|
||||
_this.InsertBegin(SerializedVersionName, version);
|
||||
}
|
||||
}
|
||||
|
||||
public const string SerializedVersionName = "serializedVersion";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user