Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
YamlSerializerFactoryAttribute.cs
Go to the documentation of this file.
1 // Copyright (c) 2014 Silicon Studio Corp. (http://siliconstudio.co.jp)
2 // This file is distributed under GPL v3. See LICENSE.md for details.
3 using System;
4 using SharpYaml.Serialization;
5 
6 namespace SiliconStudio.Core.Yaml
7 {
8  /// <summary>
9  /// Attribute use to tag a class that is implementing a <see cref="IYamlSerializable"/> or <see cref="IYamlSerializableFactory"/>
10  /// and will be used for asset serialization.
11  /// </summary>
12  [AttributeUsage(AttributeTargets.Class)]
13  public class YamlSerializerFactoryAttribute : Attribute
14  {
15  }
16 }
Attribute use to tag a class that is implementing a IYamlSerializable or IYamlSerializableFactory and...