aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-04-16 21:28:54 +1200
committerJedidiah Barber <contact@jedbarber.id.au>2025-04-16 21:28:54 +1200
commit0393492b694f474ae00185348fa36dc932b7a116 (patch)
treee33ddda985ba3c52d74a1cd3d7a378175b0f8122
parent30ba2f59f5880b92a24602009272ee49c1fbdf54 (diff)
Added credits/license header to source
-rw-r--r--src/displays.adb6
-rw-r--r--src/displays.ads6
-rw-r--r--src/grids.adb6
-rw-r--r--src/grids.ads6
-rw-r--r--src/main.adb6
-rw-r--r--src/misc.adb6
-rw-r--r--src/misc.ads6
-rw-r--r--src/moves.adb6
-rw-r--r--src/moves.ads6
-rw-r--r--src/pathfinding.adb6
-rw-r--r--src/pathfinding.ads6
-rw-r--r--src/sokoban.adb6
-rw-r--r--src/sokoban.ads6
-rw-r--r--src/squares.adb6
-rw-r--r--src/squares.ads6
-rw-r--r--src/things.adb6
-rw-r--r--src/things.ads6
17 files changed, 102 insertions, 0 deletions
diff --git a/src/displays.adb b/src/displays.adb
index 6c33171..fec8ded 100644
--- a/src/displays.adb
+++ b/src/displays.adb
@@ -1,5 +1,11 @@
+-- Programmed by Jedidiah Barber
+-- Licensed under the Sunset License v1.0
+
+-- See license.txt for further details
+
+
with
FLTK.Screen,
diff --git a/src/displays.ads b/src/displays.ads
index b7fa8fd..d4229fb 100644
--- a/src/displays.ads
+++ b/src/displays.ads
@@ -1,5 +1,11 @@
+-- Programmed by Jedidiah Barber
+-- Licensed under the Sunset License v1.0
+
+-- See license.txt for further details
+
+
with
FLTK.Widgets.Groups.Windows.Double,
diff --git a/src/grids.adb b/src/grids.adb
index 5bf82c3..388c996 100644
--- a/src/grids.adb
+++ b/src/grids.adb
@@ -1,5 +1,11 @@
+-- Programmed by Jedidiah Barber
+-- Licensed under the Sunset License v1.0
+
+-- See license.txt for further details
+
+
package body Grids is
diff --git a/src/grids.ads b/src/grids.ads
index 856ff17..9de6893 100644
--- a/src/grids.ads
+++ b/src/grids.ads
@@ -1,5 +1,11 @@
+-- Programmed by Jedidiah Barber
+-- Licensed under the Sunset License v1.0
+
+-- See license.txt for further details
+
+
with
FLTK.Widgets,
diff --git a/src/main.adb b/src/main.adb
index cbdca0c..ba6e79b 100644
--- a/src/main.adb
+++ b/src/main.adb
@@ -1,5 +1,11 @@
+-- Programmed by Jedidiah Barber
+-- Licensed under the Sunset License v1.0
+
+-- See license.txt for further details
+
+
with
FLTK,
diff --git a/src/misc.adb b/src/misc.adb
index aa1b1e2..0a16450 100644
--- a/src/misc.adb
+++ b/src/misc.adb
@@ -1,5 +1,11 @@
+-- Programmed by Jedidiah Barber
+-- Licensed under the Sunset License v1.0
+
+-- See license.txt for further details
+
+
package body Misc is
diff --git a/src/misc.ads b/src/misc.ads
index ad64b46..679f3f5 100644
--- a/src/misc.ads
+++ b/src/misc.ads
@@ -1,5 +1,11 @@
+-- Programmed by Jedidiah Barber
+-- Licensed under the Sunset License v1.0
+
+-- See license.txt for further details
+
+
private with
Ada.Directories,
diff --git a/src/moves.adb b/src/moves.adb
index b86ba8c..58bbbf9 100644
--- a/src/moves.adb
+++ b/src/moves.adb
@@ -1,5 +1,11 @@
+-- Programmed by Jedidiah Barber
+-- Licensed under the Sunset License v1.0
+
+-- See license.txt for further details
+
+
package body Moves is
diff --git a/src/moves.ads b/src/moves.ads
index 2c9a334..a8e18df 100644
--- a/src/moves.ads
+++ b/src/moves.ads
@@ -1,5 +1,11 @@
+-- Programmed by Jedidiah Barber
+-- Licensed under the Sunset License v1.0
+
+-- See license.txt for further details
+
+
private with
Ada.Containers.Vectors;
diff --git a/src/pathfinding.adb b/src/pathfinding.adb
index 5234cdb..ca4cbda 100644
--- a/src/pathfinding.adb
+++ b/src/pathfinding.adb
@@ -1,5 +1,11 @@
+-- Programmed by Jedidiah Barber
+-- Licensed under the Sunset License v1.0
+
+-- See license.txt for further details
+
+
with
Things,
diff --git a/src/pathfinding.ads b/src/pathfinding.ads
index eec079f..e6dd328 100644
--- a/src/pathfinding.ads
+++ b/src/pathfinding.ads
@@ -1,5 +1,11 @@
+-- Programmed by Jedidiah Barber
+-- Licensed under the Sunset License v1.0
+
+-- See license.txt for further details
+
+
with
Grids,
diff --git a/src/sokoban.adb b/src/sokoban.adb
index 1f85266..a2206ee 100644
--- a/src/sokoban.adb
+++ b/src/sokoban.adb
@@ -1,5 +1,11 @@
+-- Programmed by Jedidiah Barber
+-- Licensed under the Sunset License v1.0
+
+-- See license.txt for further details
+
+
with
Ada.Directories,
diff --git a/src/sokoban.ads b/src/sokoban.ads
index 64d8b6e..14a35a2 100644
--- a/src/sokoban.ads
+++ b/src/sokoban.ads
@@ -1,5 +1,11 @@
+-- Programmed by Jedidiah Barber
+-- Licensed under the Sunset License v1.0
+
+-- See license.txt for further details
+
+
package Sokoban is
diff --git a/src/squares.adb b/src/squares.adb
index fbb04c6..17cf5e8 100644
--- a/src/squares.adb
+++ b/src/squares.adb
@@ -1,5 +1,11 @@
+-- Programmed by Jedidiah Barber
+-- Licensed under the Sunset License v1.0
+
+-- See license.txt for further details
+
+
package body Squares is
diff --git a/src/squares.ads b/src/squares.ads
index 5ff9b81..3eca22f 100644
--- a/src/squares.ads
+++ b/src/squares.ads
@@ -1,5 +1,11 @@
+-- Programmed by Jedidiah Barber
+-- Licensed under the Sunset License v1.0
+
+-- See license.txt for further details
+
+
with
Things;
diff --git a/src/things.adb b/src/things.adb
index 0a14fa3..94322c0 100644
--- a/src/things.adb
+++ b/src/things.adb
@@ -1,5 +1,11 @@
+-- Programmed by Jedidiah Barber
+-- Licensed under the Sunset License v1.0
+
+-- See license.txt for further details
+
+
package body Things is
diff --git a/src/things.ads b/src/things.ads
index ddd4bb4..4f35b64 100644
--- a/src/things.ads
+++ b/src/things.ads
@@ -1,5 +1,11 @@
+-- Programmed by Jedidiah Barber
+-- Licensed under the Sunset License v1.0
+
+-- See license.txt for further details
+
+
private with
Ada.Directories,