Make it possible to change the port number of the PacketServer

This commit is contained in:
zontreck 2024-06-03 15:19:28 -07:00
parent 043010aad3
commit 8d93157ac0
4 changed files with 10 additions and 8 deletions

View file

@ -1,5 +1,5 @@
import 'package:libac_dart/packets/packets.dart';
void main() async {
await PacketServer.start();
await PacketServer.start(25306);
}