-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b2ebb2c
commit 242d1f8
Showing
6 changed files
with
67 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#[cfg(target_os = "windows")] | ||
pub const PATH_SDL2: &'static str = "SDL2.dll"; | ||
#[cfg(target_os = "linux")] | ||
pub const PATH_SDL2: &'static str = "libSDL2-2.0.so.0"; | ||
#[cfg(target_os = "windows")] | ||
pub const PATH_EXE: &'static str = "./Dwarf Fortress.exe"; | ||
#[cfg(target_os = "linux")] | ||
pub const PATH_EXE: &'static str = "./dwarfort"; | ||
|
||
pub const PATH_ENCODING: &'static str = "./dfint-data/encoding.toml"; | ||
pub const PATH_CONFIG: &'static str = "./dfint-data/config.toml"; | ||
pub const PATH_OFFSETS: &'static str = "./dfint-data/offsets.toml"; | ||
pub const PATH_DICTIONARY: &'static str = "./dfint-data/dictionary.csv"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters