blob: 773886ca3ecb4347dc85d772f7c93bf171e2c948 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#if UNITY_WP8 && UNITY_WP8_NATIVE_COMPILER
using System;
using System.Runtime.InteropServices;
namespace System
{
[AttributeUsageAttribute(AttributeTargets.Class|AttributeTargets.Struct|AttributeTargets.Enum|AttributeTargets.Delegate, Inherited = false)]
[ComVisible(true)]
public class SerializableAttribute : Attribute
{
};
[AttributeUsageAttribute(AttributeTargets.Field, Inherited = false)]
[ComVisibleAttribute(true)]
public class NonSerializedAttribute : Attribute
{
};
}
#endif
|