Add data to a databox object. If table and/or entry does not exist. Databox will create a new table/entry.
public bool AddData(string _tableID, string _entryID, string _valueID, DataboxType _data)
public DataboxObject database;
FloatType _health = new FloatType();
_health.Value = 100f;
database.AddData("TableName", "EntryName", "ValueName", _health);