Entitas  0.35.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
SerializableMember.cs
1 using System;
2 
3 namespace Entitas.Serialization.Blueprints {
4 
5  [Serializable]
6  public class SerializableMember {
7  public string name;
8  public object value;
9 
10  public SerializableMember() {
11  }
12 
13  public SerializableMember(string name, object value) {
14  this.name = name;
15  this.value = value;
16  }
17  }
18 }