summaryrefslogtreecommitdiff
path: root/client/src/main.rs
blob: 93ce825e52794045e0055888a264aa5ff1bfcf2b (plain) (blame)
1
2
3
4
5
6
7
// Copyright 2022-2024 Gabriel Bjørnager Jensen.

use bowshock::use_mod;
use_mod!(pub client);
use_mod!(pub server_connection);

fn main() -> Result<(), i32> { Client::new().run() }