initial commit

This commit is contained in:
lkoester
2022-12-15 14:57:29 +01:00
commit 66459afcab
9 changed files with 1320 additions and 0 deletions

4
src/lib.rs Normal file
View File

@ -0,0 +1,4 @@
use std::net::Ipv4Addr;
pub const OBSW_SERVER_ADDR: Ipv4Addr = Ipv4Addr::new(127, 0, 0, 1);
pub const SERVER_PORT: u16 = 7301;