File size: 686 Bytes
b6a38d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
--- MultiUser functions.
--- Sets the name and country for a user and additional 3 vector data of strings.
-- @cstyle void MultiUser.SetUser(int index, string name, string country, vector<string> data1, vector<string> data2, vector<string> data3).
-- @param index int; the index of the user.
-- @param name string; the name of the user.
-- @param country string; country of the user.
-- @param data1 vector<string>; additional string vector data to set.
-- @param data2 vector<string>; additional string vector data to set.
-- @param data3 vector<string>; additional string vector data to set.
-- @return void.
function MultiUser.SetUser(index, name, country, data1, data2, data3)
end |