Skip to content

Instantly share code, notes, and snippets.

@gaborbarna
Created September 7, 2017 22:06
Show Gist options
  • Save gaborbarna/6b74e339252b81996ee98e0f52b803fb to your computer and use it in GitHub Desktop.
Save gaborbarna/6b74e339252b81996ee98e0f52b803fb to your computer and use it in GitHub Desktop.
using EpForceDirectedGraph.cs;
public class NodeDataVR : NodeData
{
public NodeDataVR(JSONObject entity) {
this.jsonObject = entity;
this.label = entity ["id"].str;
}
public JSONObject jsonObject { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment