From 0f111cf51b00c4e884b7e53b4fd7ff6e38d8af5e Mon Sep 17 00:00:00 2001 From: untodesu Date: Fri, 26 Dec 2025 23:17:56 +0500 Subject: Add include guards and header comments to sources --- src/game/client/entity/interpolation.hh | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/game/client/entity/interpolation.hh') diff --git a/src/game/client/entity/interpolation.hh b/src/game/client/entity/interpolation.hh index 8fb0db1..cc18b23 100644 --- a/src/game/client/entity/interpolation.hh +++ b/src/game/client/entity/interpolation.hh @@ -1,6 +1,15 @@ +// SPDX-License-Identifier: BSD-2-Clause +// Copyright (c) 2025 Kirill Dmitrievich +// File: interpolation.hh +// Description: Interpolate components between server frames + +#ifndef CLIENT_ENTITY_INTERPOLATION_HH +#define CLIENT_ENTITY_INTERPOLATION_HH #pragma once namespace interpolation { void update(void); } // namespace interpolation + +#endif -- cgit