Survivalcraft API 1.8.2.3 v1.8.2.3
Survivalcraft 2.4
载入中...
搜索中...
未找到
HumanReadableConverterAttribute.cs
浏览该文件的文档.
1namespace Engine.Serialization {
2 [AttributeUsage(AttributeTargets.Class)]
3 public class HumanReadableConverterAttribute : Attribute {
4 public Type[] Types;
5
6 public HumanReadableConverterAttribute(params Type[] types) => Types = types.ToArray();
7 }
8}