summaryrefslogtreecommitdiff
path: root/server/src/config/mod.rs
blob: 72d3860998974e75f08d1fb3ed593fbcd6d8f7f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2022-2024 Gabriel Bjørnager Jensen.

use bzipper::FixedString;

mod load;

#[derive(Debug)]
pub struct Config {
	pub name: FixedString<0x10>,
	pub port: u16,

	pub max_player_count: u32,
}