I'm trying to add a short value to my indices list, but I'm getting an error that the method has invalid arguments.
    int verticesStart = vertices.Count();
    short vertStart = (short)verticesStart;
Since the indices list is a "short", I cast the variable verticesStart so it is usable.
    indices.Add(vertStart + 0);
This line is where I get the error. Am I not allowed to do any kind of math function in an Add method?