Skip to content

Commit cfe54c7

Browse files
committed
🎉 Initial commit - AeroFPS PRO v1.0
0 parents  commit cfe54c7

21 files changed

+3649
-0
lines changed

.gitignore

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# AeroFPS PRO
2+
3+
# Python
4+
__pycache__/
5+
*.py[cod]
6+
*$py.class
7+
*.so
8+
.Python
9+
build/
10+
develop-eggs/
11+
dist/
12+
downloads/
13+
eggs/
14+
.eggs/
15+
lib/
16+
lib64/
17+
parts/
18+
sdist/
19+
var/
20+
wheels/
21+
*.egg-info/
22+
.installed.cfg
23+
*.egg
24+
25+
# PyInstaller
26+
*.manifest
27+
*.spec
28+
29+
# Logs
30+
*.log
31+
logs/
32+
*.aerofps_installed
33+
34+
# Virtual Environment
35+
venv/
36+
env/
37+
ENV/
38+
39+
# IDE
40+
.vscode/
41+
.idea/
42+
*.swp
43+
*.swo
44+
*~
45+
46+
# OS
47+
.DS_Store
48+
Thumbs.db
49+
desktop.ini
50+
51+
# Project specific
52+
api.py
53+
index.html
54+
script.js
55+
style.css
56+
57+
# Build artifacts
58+
*.exe
59+
*.dll
60+
*.dylib

0 commit comments

Comments
 (0)