Ready for the first beta release. #105

Merged
That-One-Nerd merged 41 commits from main-canary into main 2023-05-18 13:05:42 -04:00
5 changed files with 7 additions and 5 deletions
Showing only changes of commit 71edd4fffa - Show all commits

View File

@ -1,4 +1,4 @@
namespace SrcMod.Shell.Valve;
namespace SrcMod.Shell.Valve.ObjectModels;
public interface IVdfConvertible
{

View File

@ -1,4 +1,4 @@
namespace SrcMod.Shell.Valve;
namespace SrcMod.Shell.Valve.ObjectModels;
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false, Inherited = true)]
public class VdfIgnoreAttribute : Attribute { }

View File

@ -1,4 +1,4 @@
namespace SrcMod.Shell.Valve;
namespace SrcMod.Shell.Valve.ObjectModels;
public class VdfSerializationException : Exception
{

View File

@ -1,4 +1,6 @@
namespace SrcMod.Shell.Valve;
using SrcMod.Shell.Valve.ObjectModels;
namespace SrcMod.Shell.Valve;
public static class VdfConvert
{

View File

@ -4,7 +4,7 @@ public class VdfSerializer
{
public VdfOptions Options => p_options;
private VdfOptions p_options;
private readonly VdfOptions p_options;
public VdfSerializer() : this(VdfOptions.Default) { }
public VdfSerializer(VdfOptions options)