Compare commits
No commits in common. "9f431517e3cd5645ec626063b6a18c8496843d90" and "2661862d724d1d872d46a0cb9876574c7bb8a469" have entirely different histories.
9f431517e3
...
2661862d72
30
README.md
30
README.md
|
@ -1,33 +1,7 @@
|
|||
<div id="shields" align="center">
|
||||
|
||||
<!-- PROJECT SHIELDS -->
|
||||
[![Contributors][contributors-shield]][contributors-url]
|
||||
[![Forks][forks-shield]][forks-url]
|
||||
[![Stargazers][stars-shield]][stars-url]
|
||||
[![Issues][issues-shield]][issues-url]
|
||||
[![MIT License][license-shield]][license-url]
|
||||
[![Xing][xing-shield]][xing-url]
|
||||
</div>
|
||||
|
||||
# CS:GO Fade Calculator Python
|
||||
|
||||
Python port of [@chescos](https://github.com/chescos) original
|
||||
Attempted Python port of [@chescos](https://github.com/chescos) original
|
||||
[csgo-fade-percentage-calculator](https://github.com/chescos/csgo-fade-percentage-calculator).
|
||||
Check out his repository for more information.
|
||||
|
||||
If you notice any errors please feel free to open an issue or pull request.
|
||||
|
||||
<!-- MARKDOWN LINKS & IMAGES -->
|
||||
<!-- https://www.markdownguide.org/basic-syntax/#reference-style-links -->
|
||||
[contributors-shield]: https://img.shields.io/github/contributors/Helyux/csgo-fade-calculator-py.svg?style=for-the-badge
|
||||
[contributors-url]: https://github.com/Helyux/csgo-fade-calculator-py/graphs/contributors
|
||||
[forks-shield]: https://img.shields.io/github/forks/Helyux/csgo-fade-calculator-py.svg?style=for-the-badge
|
||||
[forks-url]: https://github.com/Helyux/csgo-fade-calculator-py/network/members
|
||||
[stars-shield]: https://img.shields.io/github/stars/Helyux/csgo-fade-calculator-py.svg?style=for-the-badge
|
||||
[stars-url]: https://github.com/Helyux/csgo-fade-calculator-py/stargazers
|
||||
[issues-shield]: https://img.shields.io/github/issues/Helyux/csgo-fade-calculator-py.svg?style=for-the-badge
|
||||
[issues-url]: https://github.com/Helyux/csgo-fade-calculator-py/issues
|
||||
[license-shield]: https://img.shields.io/github/license/Helyux/csgo-fade-calculator-py.svg?style=for-the-badge
|
||||
[license-url]: https://github.com/Helyux/csgo-fade-calculator-py/blob/master/LICENSE
|
||||
[xing-shield]: https://img.shields.io/static/v1?style=for-the-badge&message=Xing&color=006567&logo=Xing&logoColor=FFFFFF&label
|
||||
[xing-url]: https://www.xing.com/profile/Lukas_Mahler10
|
||||
If you notice any errors please feel free to open an issue or do a pull request.
|
|
@ -1,8 +1,9 @@
|
|||
__author__ = "Lukas Mahler"
|
||||
__version__ = "1.0.0"
|
||||
__date__ = "12.07.2023"
|
||||
__version__ = "0.0.0"
|
||||
__date__ = "26.06.2023"
|
||||
__email__ = "m@hler.eu"
|
||||
__status__ = "Production"
|
||||
__status__ = "Development"
|
||||
|
||||
|
||||
from src.FadeCalculator import FadeCalculator
|
||||
from src.AmberFadeCalculator import AmberFadeCalculator
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
__author__ = "Lukas Mahler"
|
||||
__version__ = "1.0.0"
|
||||
__date__ = "12.07.2023"
|
||||
__version__ = "0.0.0"
|
||||
__date__ = "26.06.2023"
|
||||
__email__ = "m@hler.eu"
|
||||
__status__ = "Production"
|
||||
__status__ = "Development"
|
||||
|
||||
|
||||
from src.BaseCalculator import BaseCalculator
|
||||
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
__author__ = "Lukas Mahler"
|
||||
__version__ = "1.0.0"
|
||||
__date__ = "12.07.2023"
|
||||
__version__ = "0.0.0"
|
||||
__date__ = "26.06.2023"
|
||||
__email__ = "m@hler.eu"
|
||||
__status__ = "Production"
|
||||
__status__ = "Development"
|
||||
|
||||
|
||||
from src.BaseCalculator import BaseCalculator
|
||||
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
__author__ = "Lukas Mahler"
|
||||
__version__ = "1.0.0"
|
||||
__date__ = "12.07.2023"
|
||||
__version__ = "0.0.0"
|
||||
__date__ = "28.06.2023"
|
||||
__email__ = "m@hler.eu"
|
||||
__status__ = "Production"
|
||||
__status__ = "Development"
|
||||
|
||||
|
||||
from src.RandomNumberGenerator import RandomNumberGenerator
|
||||
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
__author__ = "Lukas Mahler"
|
||||
__version__ = "1.0.0"
|
||||
__date__ = "12.07.2023"
|
||||
__version__ = "0.0.0"
|
||||
__date__ = "26.06.2023"
|
||||
__email__ = "m@hler.eu"
|
||||
__status__ = "Production"
|
||||
__status__ = "Development"
|
||||
|
||||
|
||||
from src.BaseCalculator import BaseCalculator
|
||||
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
__author__ = "Lukas Mahler"
|
||||
__version__ = "1.0.0"
|
||||
__date__ = "12.07.2023"
|
||||
__version__ = "0.0.0"
|
||||
__date__ = "26.06.2023"
|
||||
__email__ = "m@hler.eu"
|
||||
__status__ = "Production"
|
||||
__status__ = "Development"
|
||||
|
||||
|
||||
import math
|
||||
|
||||
|
|
Loading…
Reference in New Issue