Paperwork stuff

This commit is contained in:
Gender Shrapnel 2022-08-10 20:28:33 +02:00
parent a83a8ce528
commit d31c73b005
Signed by: modzero
GPG Key ID: 4E11A06C6D1E5213
4 changed files with 67 additions and 1 deletions

4
.gitignore vendored
View File

@ -1,2 +1,4 @@
/target
.vscode
.vscode/*
!.vscode/launch.json
!.vscode/extensions.json

7
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,7 @@
{
"recommendations": [
"vadimcn.vscode-lldb",
"ymotongpoo.licenser",
"rust-lang.rust-analyzer"
]
}

45
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,45 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'monstrous'",
"cargo": {
"args": [
"build",
"--bin=monstrous",
"--package=monstrous"
],
"filter": {
"name": "monstrous",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'monstrous'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=monstrous",
"--package=monstrous"
],
"filter": {
"name": "monstrous",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}

View File

@ -1,3 +1,6 @@
// Copyright 2022 ModZero.
// SPDX-License-Identifier: AGPL-3.0-or-later
use bevy::{
input::mouse::MouseMotion,
prelude::*,
@ -76,3 +79,12 @@ fn main() {
.add_system(mouse_motion)
.run();
}
#[cfg(test)]
mod tests {
#[test]
fn test_true()
{
assert!(false);
}
}