// 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