summaryrefslogtreecommitdiff
path: root/hk21/game
diff options
context:
space:
mode:
Diffstat (limited to 'hk21/game')
-rw-r--r--hk21/game/BUILD.bazel4
-rw-r--r--hk21/game/gpu.cpp4
-rw-r--r--hk21/game/gpu.hpp4
-rw-r--r--hk21/game/main.cpp4
4 files changed, 16 insertions, 0 deletions
diff --git a/hk21/game/BUILD.bazel b/hk21/game/BUILD.bazel
index 786ed6a..9689d67 100644
--- a/hk21/game/BUILD.bazel
+++ b/hk21/game/BUILD.bazel
@@ -1,3 +1,7 @@
+# Copyright 2025 Steven Le Rouzic
+#
+# SPDX-License-Identifier: BSD-3-Clause
+
cc_binary(
name = "game",
srcs = [
diff --git a/hk21/game/gpu.cpp b/hk21/game/gpu.cpp
index b481ee7..4aa1f95 100644
--- a/hk21/game/gpu.cpp
+++ b/hk21/game/gpu.cpp
@@ -1,3 +1,7 @@
+// Copyright 2025 Steven Le Rouzic
+//
+// SPDX-License-Identifier: BSD-3-Clause
+
#include "hk21/game/gpu.hpp"
#include <asl/containerS/buffer.hpp>
diff --git a/hk21/game/gpu.hpp b/hk21/game/gpu.hpp
index d8d9d18..316cdb2 100644
--- a/hk21/game/gpu.hpp
+++ b/hk21/game/gpu.hpp
@@ -1,3 +1,7 @@
+// Copyright 2025 Steven Le Rouzic
+//
+// SPDX-License-Identifier: BSD-3-Clause
+
#pragma once
#include <asl/types/status_or.hpp>
diff --git a/hk21/game/main.cpp b/hk21/game/main.cpp
index 21b17f3..527235d 100644
--- a/hk21/game/main.cpp
+++ b/hk21/game/main.cpp
@@ -1,3 +1,7 @@
+// Copyright 2025 Steven Le Rouzic
+//
+// SPDX-License-Identifier: BSD-3-Clause
+
#include <asl/logging/logging.hpp>
#include <SDL3/SDL.h>