Elyg
11/3/2017 - 3:46 PM

Structs

Run Over: POINTS Creates a struct in vex. Need to link up a string field to the outer code parm on the snippet inside

test myVar;
myVar.i = 2;
f@test2 = myVar.i;
myVar->add();
f@test2 = myVar.i;


//
struct test
{
  float i,j,k;
  float add()
  {
    return i++;
  }
}