Added comments for chip rendering.

This commit is contained in:
2021-05-20 08:43:50 -07:00
parent b8e9117ad9
commit 17ddb4246a

View File

@ -12,8 +12,23 @@
#include "../../display/shader.h"
#include "../../display/texture.h"
/**
* Renders a stack of chips at a position.
*
* @param count Count of chips to render (Determines the stack size).
* @param x X position of the stack.
* @param y Y position of the stack.
* @param z Z position of the stack.
* @param yaw Rotation (YAW) of the chips.
*/
void holdemRenderChipSet(int32_t count,float x,float y,float z,float yaw);
/**
* Get the position for a stack of chips based on a seat.
*
* @param seat Seat to get the position for.
* @return Position for the seat that the chips should render to.
*/
pokerposition_t holdemRenderChipGetPosition(uint8_t seat);
/**