Skip to content

Commit

Permalink
Add license.
Browse files Browse the repository at this point in the history
  • Loading branch information
alxm committed Oct 26, 2017
1 parent fca6f41 commit a017f71
Show file tree
Hide file tree
Showing 10 changed files with 1,204 additions and 0 deletions.
403 changes: 403 additions & 0 deletions CC-BY-NC-ND

Large diffs are not rendered by default.

674 changes: 674 additions & 0 deletions COPYING

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# arduboy-shooter

## License

Copyright 2017 Alex Margarit (alex@alxm.org)

* Code licensed under [GNU GPL3](https://www.gnu.org/licenses/gpl.html) (see `COPYING`)
* Graphics licensed under [CC BY-NC-ND 4.0](https://creativecommons.org/licenses/by-nc-nd/4.0/) (see `CC-BY-NC-ND`)
17 changes: 17 additions & 0 deletions src/loop.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2017 Alex Margarit <alex@alxm.org>
arduboy-shooter is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
arduboy-shooter is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with arduboy-shooter. If not, see <http://www.gnu.org/licenses/>.
*/

#include "shared.h"

#define NUM_STARS 24
Expand Down
17 changes: 17 additions & 0 deletions src/loop.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2017 Alex Margarit <alex@alxm.org>
arduboy-shooter is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
arduboy-shooter is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with arduboy-shooter. If not, see <http://www.gnu.org/licenses/>.
*/

#ifdef __cplusplus
extern "C" {
#endif
Expand Down
17 changes: 17 additions & 0 deletions src/main.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2017 Alex Margarit <alex@alxm.org>
arduboy-shooter is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
arduboy-shooter is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with arduboy-shooter. If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef ARDUINO

#include <a2x.h>
Expand Down
17 changes: 17 additions & 0 deletions src/shared.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2017 Alex Margarit <alex@alxm.org>
arduboy-shooter is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
arduboy-shooter is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with arduboy-shooter. If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef ARDUINO

#include <a2x.h>
Expand Down
17 changes: 17 additions & 0 deletions src/shared.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2017 Alex Margarit <alex@alxm.org>
arduboy-shooter is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
arduboy-shooter is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with arduboy-shooter. If not, see <http://www.gnu.org/licenses/>.
*/

#include <Arduino.h>
#include <Arduboy2.h>
#include "shared.h"
Expand Down
17 changes: 17 additions & 0 deletions src/shared.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2017 Alex Margarit <alex@alxm.org>
arduboy-shooter is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
arduboy-shooter is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with arduboy-shooter. If not, see <http://www.gnu.org/licenses/>.
*/

#ifdef ARDUINO
#include <stdlib.h>
#include <stdbool.h>
Expand Down
17 changes: 17 additions & 0 deletions src/src.ino
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2017 Alex Margarit <alex@alxm.org>
arduboy-shooter is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
arduboy-shooter is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with arduboy-shooter. If not, see <http://www.gnu.org/licenses/>.
*/

#include <Arduino.h>
#include <Arduboy2.h>
#include "shared.h"
Expand Down

0 comments on commit a017f71

Please sign in to comment.