From 50653a9cfe3b26125cf07eae968b81e377a5de66 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Sat, 1 Mar 2025 00:53:32 +0100 Subject: Add license --- hk21/game/BUILD.bazel | 4 ++++ hk21/game/gpu.cpp | 4 ++++ hk21/game/gpu.hpp | 4 ++++ hk21/game/main.cpp | 4 ++++ 4 files changed, 16 insertions(+) (limited to 'hk21/game') 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 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 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 #include -- cgit