blob: cc18b23ee38e8afb09ffcca0bbe301626f3d288b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|