Claude Chappe' Curse - A C Game
Logo Institut d'Informatique Claude Chappe Logo Université de Le Mans Logo Raeptor Production
 
Loading...
Searching...
No Matches
buffer.h
Go to the documentation of this file.
1#ifndef BUFFER_H
2#define BUFFER_H
3
18struct LightingBuffer;
19struct CollisionBuffer;
20
30
37void init_buffers();
38
45void free_buffers();
46
// end of BufferManagement
48
49#endif
void free_buffers()
Frees the buffers.
Definition buffer.c:12
void init_buffers()
Initializes the buffers.
Definition buffer.c:7
Structure to hold various buffer collections.
Definition buffer.h:26
struct LightingBuffer lightingBuffer
Definition buffer.h:27
struct CollisionBuffer collisionBuffer
Definition buffer.h:28
Represents a buffer for collision shapes.
Definition bodies.h:125
Buffer structure to manage an array of lighting nodes.
Definition lighting.h:101