lua_RenderStateFrontFace.h 364 B

123456789101112131415
  1. #ifndef LUA_RENDERSTATEFRONTFACE_H_
  2. #define LUA_RENDERSTATEFRONTFACE_H_
  3. #include "RenderState.h"
  4. namespace gameplay
  5. {
  6. // Lua bindings for enum conversion functions for RenderState::FrontFace.
  7. RenderState::FrontFace lua_enumFromString_RenderStateFrontFace(const char* s);
  8. const char* lua_stringFromEnum_RenderStateFrontFace(RenderState::FrontFace e);
  9. }
  10. #endif