Table Management
Manage and spawn all tables in your uVegas multiplayer casino project, including Blackjack, Poker, Roulette, and Slots.
Overview
How It Works
foreach (var data in tableData)
{
for (int i = 0; i < data.maxTables; i++)
{
SpawnTable(data, i);
}
}Table Prefabs
Integration with Lobby
Last updated