#SDL

相关标签
android Lua SDL Bootstrapper mainmenu lineargradientbrush margintop disable_functions platform_driver Timesten FileMonitor REMOTEADDR AlphaBlend CSSPosition Console.ReadLine enablewindow treatas shellexecuteinfo dealloc duplicatehandle

Lua怎么与SDL进行集成

2024-04-11 10:22:02

要将Lua与SDL集成,可以使用Lua的扩展机制来调用SDL的功能。以下是一个简单的示例代码,展示如何在Lua中使用SDL库: ```lua local sdl = require("SDL") ...

0