Using plural datatype constants in functions

tyilo

Member
This is what i want to do:
Code:
void myFunction(items stuff)
{
    foreach it in stuff
    {
        //do something here...
    }
}
myFunction($items[meat stack, turtle totem]);
 

jasonharper

Developer
Code:
void myFunction(boolean[item] stuff)
{
        foreach it in stuff
        {
                //do something here...
        }
}
myFunction($items[meat stack, turtle totem]);
 
Top