mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-13 21:33:38 +00:00
15 lines
397 B
C#
15 lines
397 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace SabreTools.Serialization.Streams
|
|
{
|
|
public partial class VBSP : IStreamSerializer<Models.VBSP.File>
|
|
{
|
|
/// <inheritdoc/>
|
|
#if NET48
|
|
public Stream Serialize(Models.VBSP.File obj) => throw new NotImplementedException();
|
|
#else
|
|
public Stream? Serialize(Models.VBSP.File? obj) => throw new NotImplementedException();
|
|
#endif
|
|
}
|
|
} |