mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-17 05:45:38 +00:00
16 lines
391 B
C#
16 lines
391 B
C#
using System;
|
|
using System.IO;
|
|
using SabreTools.Models.N3DS;
|
|
|
|
namespace SabreTools.Serialization.Streams
|
|
{
|
|
public partial class N3DS : IStreamSerializer<Cart>
|
|
{
|
|
/// <inheritdoc/>
|
|
#if NET48
|
|
public Stream Serialize(Cart obj) => throw new NotImplementedException();
|
|
#else
|
|
public Stream? Serialize(Cart? obj) => throw new NotImplementedException();
|
|
#endif
|
|
}
|
|
} |