Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
EntityComponentProperty.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 SiliconStudio.Core;
5 using SiliconStudio.Core.Extensions;
6 
7 namespace SiliconStudio.Paradox.EntityModel
8 {
9  [DataContract]
11  {
13  {
14 
15  }
16 
17  public EntityComponentProperty(EntityComponentPropertyType type, string name, object value)
18  {
19  Type = type;
20  Name = name;
21  Value = value;
22  }
23 
24  public EntityComponentPropertyType Type { get; set; }
25  public string Name { get; set; }
26 
27  public object Value { get; set; }
28  }
29 }
EntityComponentProperty(EntityComponentPropertyType type, string name, object value)