first commit
This commit is contained in:
15
dasher.cpp
Normal file
15
dasher.cpp
Normal file
@@ -0,0 +1,15 @@
|
||||
#include <raylib.h>
|
||||
|
||||
int main() {
|
||||
|
||||
InitWindow(800, 600, "Dasher Example");
|
||||
|
||||
SetTargetFPS(60);
|
||||
while (!WindowShouldClose())
|
||||
{
|
||||
BeginDrawing();
|
||||
ClearBackground(RAYWHITE);
|
||||
EndDrawing();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user