mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
9 lines
250 B
C++
9 lines
250 B
C++
#include <iostream>
|
|
|
|
int main() {
|
|
std::cout << "Arcade Lobby CLI" << std::endl;
|
|
std::cout << "Queues: Neon Rush (45s), Gridline (120s), Star Kart (30s)" << std::endl;
|
|
std::cout << "Tournaments live: Midnight Sprint" << std::endl;
|
|
return 0;
|
|
}
|