mirror of
https://github.com/StarBeat/UnityDependencyAnalyzer.git
synced 2026-03-08 05:35:27 +08:00
18 lines
343 B
C#
18 lines
343 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.IO;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Net.Http;
|
||
|
|
using System.Threading;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
#nullable enable
|
||
|
|
namespace MemoryPack.Internal {
|
||
|
|
|
||
|
|
// Preserve for Unity IL2CPP(internal but used for code generator)
|
||
|
|
|
||
|
|
public sealed class PreserveAttribute : System.Attribute
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|