Created
April 19, 2016 18:47
-
-
Save MrSmith33/c2f435937aefbc3eead25aa873363d84 to your computer and use it in GitHub Desktop.
Sdlang-d/libInputVisitor crash
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
ip "localhost" | |
port 1234 | |
name "Player" | |
num_workers 4 | |
resolution 1280 720 | |
max_fps 120 | |
view_distance 4 | |
camera_sensivity 0.1 | |
camera_fov 60.0 | |
key.forward "w" | |
key.left "a" | |
key.backward "s" | |
key.right "d" | |
key.up "space" | |
key.down "left_control" | |
key.fast "left_shift" | |
key.mainAction "mb_left" | |
key.secondaryAction "mb_right" | |
key.tertiaryAction "mb_middle" | |
key.lockMouse "q" | |
key.incViewRadius "right_bracket" | |
key.decViewRadius "left_bracket" | |
key.toggleCulling "c" | |
key.togglePosUpdate "u" | |
key.stopServer "f4" | |
key.toggle_console "grave_accent" | |
key.place_entity "e" |
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
{ | |
"name" : "test", | |
"dependencies" : { | |
"sdlang-d" : "==0.9.5" | |
}, | |
"mainSourceFile" : "main.d", | |
"targetType" : "executable" | |
} |
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
import sdlang; | |
void main() | |
{ | |
parseFile("client.sdl"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment