From b4317aceafc302e830979c3ec5277f80c0eedf10 Mon Sep 17 00:00:00 2001 From: alistair Date: Mon, 7 Dec 2020 14:54:09 +1000 Subject: [PATCH] human files --- LICENSE | 21 +++++++++++++++++++++ Makefile | 6 +++--- README.md | 24 ++++++++++++++++++++++++ 3 files changed, 48 insertions(+), 3 deletions(-) create mode 100644 LICENSE create mode 100644 README.md diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..cb1da6e --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Alistair Michael + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Makefile b/Makefile index 4aaec8c..bbbafe8 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ all: - g++ -fsanitize=address -c particles.cpp -lSDL2 -lSDL2_image -lSDL2_ttf -g -o particles.o - g++ -fsanitize=address -c game.cpp -lSDL2 -lSDL2_image -lSDL2_ttf -g -o game.o - g++ -fsanitize=address -lSDL2 -lSDL2_image -lSDL2_ttf -g particles.o game.o -o main + g++ -fsanitize=address -c particles.cpp -lSDL2 -g -o particles.o + g++ -fsanitize=address -c game.cpp -lSDL2 -g -o game.o + g++ -fsanitize=address -lSDL2 -g particles.o game.o -o main diff --git a/README.md b/README.md new file mode 100644 index 0000000..5ba8a94 --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ + +# Particle Sim + +## Controls: + +Use numbers to select the particle to place. + +(1) +: Sand + +(2) +: Water + +(3) +: Steam + +(4) +: Lava + +Use the scroll wheel to change the place-tool size. + +## Compilation + +Requires libSDL2, and has only been tested on Fedora using GCC.