diff --git a/DoConfig/DoConfig.cpp b/DoConfig/DoConfig.cpp index 3b770775..1c490ca7 100644 --- a/DoConfig/DoConfig.cpp +++ b/DoConfig/DoConfig.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include #include #include diff --git a/LICENCE.txt b/LICENCE.txt index e3144549..80d150de 100644 --- a/LICENCE.txt +++ b/LICENCE.txt @@ -11,6 +11,7 @@ MIT License Copyright (c) 2019 Regan "cuckydev" Green Copyright (c) 2019-2020 Clownacy Copyright (c) 2019-2020 Gabriel Ravier +Copyright (c) 2020 Cameron Cawley Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/Backends/Audio.h b/src/Backends/Audio.h index 86ad6563..51beb192 100644 --- a/src/Backends/Audio.h +++ b/src/Backends/Audio.h @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #pragma once #include diff --git a/src/Backends/Audio/3DS.cpp b/src/Backends/Audio/3DS.cpp index 1bbd6685..a33e136e 100644 --- a/src/Backends/Audio/3DS.cpp +++ b/src/Backends/Audio/3DS.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Audio.h" #include diff --git a/src/Backends/Audio/Null.cpp b/src/Backends/Audio/Null.cpp index f748745b..53e168ae 100644 --- a/src/Backends/Audio/Null.cpp +++ b/src/Backends/Audio/Null.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Audio.h" #include diff --git a/src/Backends/Audio/SoftwareMixer.cpp b/src/Backends/Audio/SoftwareMixer.cpp index 53b6b7bf..8291306e 100644 --- a/src/Backends/Audio/SoftwareMixer.cpp +++ b/src/Backends/Audio/SoftwareMixer.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Audio.h" #include diff --git a/src/Backends/Audio/SoftwareMixer/3DS.cpp b/src/Backends/Audio/SoftwareMixer/3DS.cpp index 0c70c6d3..2cded36f 100644 --- a/src/Backends/Audio/SoftwareMixer/3DS.cpp +++ b/src/Backends/Audio/SoftwareMixer/3DS.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "Backend.h" #include diff --git a/src/Backends/Audio/SoftwareMixer/Backend.h b/src/Backends/Audio/SoftwareMixer/Backend.h index daf7ec38..3e5939ac 100644 --- a/src/Backends/Audio/SoftwareMixer/Backend.h +++ b/src/Backends/Audio/SoftwareMixer/Backend.h @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #pragma once #include diff --git a/src/Backends/Audio/SoftwareMixer/Mixer.cpp b/src/Backends/Audio/SoftwareMixer/Mixer.cpp index 47ae1cf1..2cf986a0 100644 --- a/src/Backends/Audio/SoftwareMixer/Mixer.cpp +++ b/src/Backends/Audio/SoftwareMixer/Mixer.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "Mixer.h" #include diff --git a/src/Backends/Audio/SoftwareMixer/Mixer.h b/src/Backends/Audio/SoftwareMixer/Mixer.h index d3e09158..6e9b96eb 100644 --- a/src/Backends/Audio/SoftwareMixer/Mixer.h +++ b/src/Backends/Audio/SoftwareMixer/Mixer.h @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #pragma once #include diff --git a/src/Backends/Audio/SoftwareMixer/SDL1.cpp b/src/Backends/Audio/SoftwareMixer/SDL1.cpp index 0f99165c..9ad65043 100644 --- a/src/Backends/Audio/SoftwareMixer/SDL1.cpp +++ b/src/Backends/Audio/SoftwareMixer/SDL1.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "Backend.h" #include diff --git a/src/Backends/Audio/SoftwareMixer/SDL2.cpp b/src/Backends/Audio/SoftwareMixer/SDL2.cpp index 843fd3f9..5e20a598 100644 --- a/src/Backends/Audio/SoftwareMixer/SDL2.cpp +++ b/src/Backends/Audio/SoftwareMixer/SDL2.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "Backend.h" #include diff --git a/src/Backends/Audio/SoftwareMixer/WiiU.cpp b/src/Backends/Audio/SoftwareMixer/WiiU.cpp index 2c53024d..f88425ea 100644 --- a/src/Backends/Audio/SoftwareMixer/WiiU.cpp +++ b/src/Backends/Audio/SoftwareMixer/WiiU.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "Backend.h" #include diff --git a/src/Backends/Audio/SoftwareMixer/miniaudio.cpp b/src/Backends/Audio/SoftwareMixer/miniaudio.cpp index c428d765..b3021734 100644 --- a/src/Backends/Audio/SoftwareMixer/miniaudio.cpp +++ b/src/Backends/Audio/SoftwareMixer/miniaudio.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "Backend.h" #include diff --git a/src/Backends/Audio/WiiU.cpp b/src/Backends/Audio/WiiU.cpp index 8b0a95ab..8e615d9a 100644 --- a/src/Backends/Audio/WiiU.cpp +++ b/src/Backends/Audio/WiiU.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + // This darned thing doesn't work - sounds just randomly refuse to play, // particularly the ones used by Organya. diff --git a/src/Backends/Controller.h b/src/Backends/Controller.h index bbe6b585..11304875 100644 --- a/src/Backends/Controller.h +++ b/src/Backends/Controller.h @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #pragma once bool ControllerBackend_Init(void); diff --git a/src/Backends/Controller/GLFW3.cpp b/src/Backends/Controller/GLFW3.cpp index f1bc7be2..ea73ce48 100644 --- a/src/Backends/Controller/GLFW3.cpp +++ b/src/Backends/Controller/GLFW3.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Controller.h" #include diff --git a/src/Backends/Controller/Null.cpp b/src/Backends/Controller/Null.cpp index 65359a8f..f77a2fdd 100644 --- a/src/Backends/Controller/Null.cpp +++ b/src/Backends/Controller/Null.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Controller.h" bool ControllerBackend_Init(void) diff --git a/src/Backends/Controller/SDL.cpp b/src/Backends/Controller/SDL.cpp index 8d281ff4..a111fc1b 100644 --- a/src/Backends/Controller/SDL.cpp +++ b/src/Backends/Controller/SDL.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Controller.h" #include diff --git a/src/Backends/Misc.h b/src/Backends/Misc.h index ece4bbae..e2e35130 100644 --- a/src/Backends/Misc.h +++ b/src/Backends/Misc.h @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #pragma once #include diff --git a/src/Backends/Platform/3DS.cpp b/src/Backends/Platform/3DS.cpp index 06cce063..ee0cda26 100644 --- a/src/Backends/Platform/3DS.cpp +++ b/src/Backends/Platform/3DS.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Misc.h" #include diff --git a/src/Backends/Platform/GLFW3.cpp b/src/Backends/Platform/GLFW3.cpp index 59089557..ce2eb013 100644 --- a/src/Backends/Platform/GLFW3.cpp +++ b/src/Backends/Platform/GLFW3.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Misc.h" #include diff --git a/src/Backends/Platform/Null.cpp b/src/Backends/Platform/Null.cpp index acaaa35b..826bca09 100644 --- a/src/Backends/Platform/Null.cpp +++ b/src/Backends/Platform/Null.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Misc.h" #include diff --git a/src/Backends/Platform/SDL1.cpp b/src/Backends/Platform/SDL1.cpp index b8b3d8ea..05ebf2f7 100644 --- a/src/Backends/Platform/SDL1.cpp +++ b/src/Backends/Platform/SDL1.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Misc.h" #include diff --git a/src/Backends/Platform/SDL2.cpp b/src/Backends/Platform/SDL2.cpp index 5e25cf45..b52aa5e3 100644 --- a/src/Backends/Platform/SDL2.cpp +++ b/src/Backends/Platform/SDL2.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Misc.h" #include diff --git a/src/Backends/Platform/WiiU.cpp b/src/Backends/Platform/WiiU.cpp index 934ae51a..7321cab6 100644 --- a/src/Backends/Platform/WiiU.cpp +++ b/src/Backends/Platform/WiiU.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Misc.h" #include diff --git a/src/Backends/Rendering.h b/src/Backends/Rendering.h index bfe923c7..59b7b25b 100644 --- a/src/Backends/Rendering.h +++ b/src/Backends/Rendering.h @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #pragma once #include diff --git a/src/Backends/Rendering/3DS.cpp b/src/Backends/Rendering/3DS.cpp index e1b88bd9..bbaeed47 100644 --- a/src/Backends/Rendering/3DS.cpp +++ b/src/Backends/Rendering/3DS.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Rendering.h" #include diff --git a/src/Backends/Rendering/OpenGL3.cpp b/src/Backends/Rendering/OpenGL3.cpp index 4ff5e809..6c4e772a 100644 --- a/src/Backends/Rendering/OpenGL3.cpp +++ b/src/Backends/Rendering/OpenGL3.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + // Dual OpenGL 3.2 and OpenGL ES 2.0 renderer #include "../Rendering.h" diff --git a/src/Backends/Rendering/SDLSurface.cpp b/src/Backends/Rendering/SDLSurface.cpp index 2fba59dd..5dd48453 100644 --- a/src/Backends/Rendering/SDLSurface.cpp +++ b/src/Backends/Rendering/SDLSurface.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Rendering.h" #include diff --git a/src/Backends/Rendering/SDLTexture.cpp b/src/Backends/Rendering/SDLTexture.cpp index 7a155775..9b62b6dd 100644 --- a/src/Backends/Rendering/SDLTexture.cpp +++ b/src/Backends/Rendering/SDLTexture.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Rendering.h" #include diff --git a/src/Backends/Rendering/Software.cpp b/src/Backends/Rendering/Software.cpp index 44b9f6f3..c97343cc 100644 --- a/src/Backends/Rendering/Software.cpp +++ b/src/Backends/Rendering/Software.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Rendering.h" #include diff --git a/src/Backends/Rendering/WiiU.cpp b/src/Backends/Rendering/WiiU.cpp index 997c34e8..99992983 100644 --- a/src/Backends/Rendering/WiiU.cpp +++ b/src/Backends/Rendering/WiiU.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Rendering.h" #include diff --git a/src/Backends/Rendering/Window/OpenGL.h b/src/Backends/Rendering/Window/OpenGL.h index 8e060256..1af1a6ec 100644 --- a/src/Backends/Rendering/Window/OpenGL.h +++ b/src/Backends/Rendering/Window/OpenGL.h @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #pragma once #include diff --git a/src/Backends/Rendering/Window/OpenGL3/GLFW3.cpp b/src/Backends/Rendering/Window/OpenGL3/GLFW3.cpp index 6332db63..0760c017 100644 --- a/src/Backends/Rendering/Window/OpenGL3/GLFW3.cpp +++ b/src/Backends/Rendering/Window/OpenGL3/GLFW3.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../OpenGL.h" #include diff --git a/src/Backends/Rendering/Window/OpenGL3/SDL1.cpp b/src/Backends/Rendering/Window/OpenGL3/SDL1.cpp index efcfac23..f5c7a970 100644 --- a/src/Backends/Rendering/Window/OpenGL3/SDL1.cpp +++ b/src/Backends/Rendering/Window/OpenGL3/SDL1.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../OpenGL.h" #include diff --git a/src/Backends/Rendering/Window/OpenGL3/SDL2.cpp b/src/Backends/Rendering/Window/OpenGL3/SDL2.cpp index d96cecdb..05e4a0ff 100644 --- a/src/Backends/Rendering/Window/OpenGL3/SDL2.cpp +++ b/src/Backends/Rendering/Window/OpenGL3/SDL2.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../OpenGL.h" #include diff --git a/src/Backends/Rendering/Window/Software.h b/src/Backends/Rendering/Window/Software.h index 42596af8..149287ee 100644 --- a/src/Backends/Rendering/Window/Software.h +++ b/src/Backends/Rendering/Window/Software.h @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #pragma once #include diff --git a/src/Backends/Rendering/Window/Software/3DS.cpp b/src/Backends/Rendering/Window/Software/3DS.cpp index ed288c6e..33827432 100644 --- a/src/Backends/Rendering/Window/Software/3DS.cpp +++ b/src/Backends/Rendering/Window/Software/3DS.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Software.h" #include diff --git a/src/Backends/Rendering/Window/Software/GLFW3.cpp b/src/Backends/Rendering/Window/Software/GLFW3.cpp index d5f227fc..7df16a5d 100644 --- a/src/Backends/Rendering/Window/Software/GLFW3.cpp +++ b/src/Backends/Rendering/Window/Software/GLFW3.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Software.h" #include diff --git a/src/Backends/Rendering/Window/Software/Null.cpp b/src/Backends/Rendering/Window/Software/Null.cpp index 62edabb9..5d569142 100644 --- a/src/Backends/Rendering/Window/Software/Null.cpp +++ b/src/Backends/Rendering/Window/Software/Null.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Software.h" #include diff --git a/src/Backends/Rendering/Window/Software/SDL1.cpp b/src/Backends/Rendering/Window/Software/SDL1.cpp index 84267274..ca96f41b 100644 --- a/src/Backends/Rendering/Window/Software/SDL1.cpp +++ b/src/Backends/Rendering/Window/Software/SDL1.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Software.h" #include diff --git a/src/Backends/Rendering/Window/Software/SDL2.cpp b/src/Backends/Rendering/Window/Software/SDL2.cpp index 1c267641..eccdd085 100644 --- a/src/Backends/Rendering/Window/Software/SDL2.cpp +++ b/src/Backends/Rendering/Window/Software/SDL2.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "../Software.h" #include diff --git a/src/Backends/Rendering/Window/Software/WiiU.cpp b/src/Backends/Rendering/Window/Software/WiiU.cpp index 50e9eaaa..58f8b2be 100644 --- a/src/Backends/Rendering/Window/Software/WiiU.cpp +++ b/src/Backends/Rendering/Window/Software/WiiU.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + // Sexy new backend that bounces the software-rendered frame to the GPU, // eliminating V-tearing, and gaining support for rendering to the TV for // free! diff --git a/src/Backends/Shared/GLFW3.h b/src/Backends/Shared/GLFW3.h index a6672bb8..7ee871cd 100644 --- a/src/Backends/Shared/GLFW3.h +++ b/src/Backends/Shared/GLFW3.h @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #pragma once extern struct GLFWwindow *window; diff --git a/src/Backends/Shared/SDL.h b/src/Backends/Shared/SDL.h index c540be14..e69d9a75 100644 --- a/src/Backends/Shared/SDL.h +++ b/src/Backends/Shared/SDL.h @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #pragma once #include "SDL.h" diff --git a/src/Bitmap.cpp b/src/Bitmap.cpp index acabdec7..b817033e 100644 --- a/src/Bitmap.cpp +++ b/src/Bitmap.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "Bitmap.h" #include diff --git a/src/Bitmap.h b/src/Bitmap.h index c0544825..989244b3 100644 --- a/src/Bitmap.h +++ b/src/Bitmap.h @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #pragma once #include diff --git a/src/File.cpp b/src/File.cpp index 1ee45b56..79b7b048 100644 --- a/src/File.cpp +++ b/src/File.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "File.h" #include diff --git a/src/File.h b/src/File.h index 59ac4f34..93cd3f3d 100644 --- a/src/File.h +++ b/src/File.h @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #pragma once #include diff --git a/src/Font.cpp b/src/Font.cpp index 95562674..65269b2b 100644 --- a/src/Font.cpp +++ b/src/Font.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "Font.h" #include diff --git a/src/Font.h b/src/Font.h index 32412d16..1d23a475 100644 --- a/src/Font.h +++ b/src/Font.h @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #pragma once #include diff --git a/src/Random.cpp b/src/Random.cpp index 3c324ad3..d0d61f38 100644 --- a/src/Random.cpp +++ b/src/Random.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "Random.h" // A replication of MSVC's rand algorithm diff --git a/src/Random.h b/src/Random.h index 253869e3..b9a2568d 100644 --- a/src/Random.h +++ b/src/Random.h @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #pragma once int msvc_rand(void); diff --git a/src/Resource.cpp b/src/Resource.cpp index 794c437c..33e0dbed 100644 --- a/src/Resource.cpp +++ b/src/Resource.cpp @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #include "Resource.h" #include diff --git a/src/Resource.h b/src/Resource.h index 9f477df6..50d05749 100644 --- a/src/Resource.h +++ b/src/Resource.h @@ -1,3 +1,6 @@ +// Released under the MIT licence. +// See LICENCE.txt for details. + #pragma once #include