summaryrefslogtreecommitdiff
path: root/source/dw.rs
blob: 3905727666bf0a0b5e9b1c7c9c90def7536ef6ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2023 Gabriel Jensen.

pub struct VerTyp {
	pub maj: u64,
	pub min: u64,
	pub pat: u64,
}

pub const VER: VerTyp = VerTyp {
	maj: 0x0,
	min: 0x2,
	pat: 0x0,
};

pub const fn datpth() -> &'static str {
	if cfg!(unix) {
		//return "/usr/share/local/deltaworld";
		return "/home/delta/Repositories/deltaworld"
	}
	return "";
}

pub mod app;