Initial commit, add basic project files and an instruction on how to install SFML.

This commit is contained in:
2024-12-08 02:17:49 +01:00
commit 2a6459645c
9 changed files with 932 additions and 0 deletions

22
Chinczyk188/res/SFML.md Normal file
View File

@@ -0,0 +1,22 @@
## [EN] Installing SFML
In order to compile the program successfully, you should install SFML here first. To do so, [download an appropriate version](https://www.sfml-dev.org/download.php) of SFML (depending on the environment you're trying to compile it with).
For example, to compile the project with Visual Studio 17 (2022), download the library from [the official SFML website](https://www.sfml-dev.org/download.php), extract it to an empty folder called "SFML", and put into the "res" catalogue, in which this markdown file (SFML.md) is located.
The end effect should look something like this:
```
res
├── SFML
│   └── bin
...
└── SFML.md
```
## [PL] Instalacja biblioteki SFML
W celu skompilowania programu, należy zainstalować bibliotekę SFML do tego katalogu. Aby to uczynić, [udaj się na oficjalną stronę SFML](https://www.sfml-dev.org/download.php) w celu zainstalowania właściwej wersji biblioteki (w zależności od środowiska oraz wersji środowiska).
Przykład: aby skompilować projekt z użyciem Visual Studio 17 (2022), pobierz bibliotekę [stąd](https://www.sfml-dev.org/download.php), wyekstraktuj pliki do pustego folderu o nazwie "SFML", a następnie umieść go do katalogu "res", czyli tego, w którym znajduje się ten plik markdown (SFML.md).
Efekt końcowy powinien wyglądać następująco:
```
res
├── SFML
│   └── bin
...
└── SFML.md
```