Skip to content

Commit

Permalink
Initial Release
Browse files Browse the repository at this point in the history
  • Loading branch information
SamHoque committed Jan 3, 2021
1 parent 5475955 commit 31ca503
Show file tree
Hide file tree
Showing 13 changed files with 2,888 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

*.txt
.idea/*
out/*
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Vertigo-Boosting-Panel
A tool that would allow you to use multiple instances of CSGO, all with different accounts. The main purpose of which is to vertigoboost such accounts.

# Screenshot
![Screenshot of tabs](screenshots/tabs.gif)

# License
This Vertigo Boosting Panel is licensed under the MIT license. See the file LICENSE for more information. If you plan to use any part of this source code in your own project, I would be grateful if you would include some form of credit somewhere.
14 changes: 14 additions & 0 deletions V-Boost-Panel.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="org.openjfx:javafx-controls:11.0.2" level="project" />
<orderEntry type="library" name="org.openjfx:javafx-fxml:11.0.2" level="project" />
<orderEntry type="library" name="com.1stleg:jnativehook:2.1.0" level="project" />
</component>
</module>
Binary file added screenshots/screen1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/tabs.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions src/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module samhoque {
requires javafx.fxml;
requires javafx.controls;
requires javafx.graphics;
requires jnativehook;
requires java.logging;
requires java.desktop;

opens net.samhoque;
opens net.samhoque.boost;
}
Loading

0 comments on commit 31ca503

Please sign in to comment.