2013-11-19 02:38:44 +04:00
|
|
|
/*******************************************************************************************
|
|
|
|
*
|
2014-09-21 16:26:42 +04:00
|
|
|
* raylib [core] example - Basic window
|
2013-11-19 02:38:44 +04:00
|
|
|
*
|
2015-01-02 22:58:06 +03:00
|
|
|
* Welcome to raylib!
|
|
|
|
*
|
|
|
|
* To test examples, just press F6 and execute raylib_compile_execute script
|
|
|
|
* Note that compiled executable is placed in the same folder as .c file
|
|
|
|
*
|
|
|
|
* You can find all basic examples on C:\raylib\raylib\examples folder or
|
|
|
|
* raylib official webpage: www.raylib.com
|
|
|
|
*
|
|
|
|
* Enjoy using raylib. :)
|
|
|
|
*
|
2013-11-23 16:30:54 +04:00
|
|
|
* This example has been created using raylib 1.0 (www.raylib.com)
|
|
|
|
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
|
2013-11-19 02:38:44 +04:00
|
|
|
*
|
2015-08-27 17:13:31 +03:00
|
|
|
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
|
2013-11-19 02:38:44 +04:00
|
|
|
*
|
|
|
|
********************************************************************************************/
|
|
|
|
|
|
|
|
#include "raylib.h"
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2013-11-28 22:59:56 +04:00
|
|
|
// Initialization
|
|
|
|
//--------------------------------------------------------------------------------------
|
2013-11-23 16:30:54 +04:00
|
|
|
int screenWidth = 800;
|
|
|
|
int screenHeight = 450;
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2014-09-21 16:26:42 +04:00
|
|
|
InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window");
|
2016-01-16 14:52:55 +03:00
|
|
|
|
|
|
|
SetTargetFPS(60);
|
2013-11-28 22:59:56 +04:00
|
|
|
//--------------------------------------------------------------------------------------
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2013-11-19 02:38:44 +04:00
|
|
|
// Main game loop
|
2013-11-23 16:30:54 +04:00
|
|
|
while (!WindowShouldClose()) // Detect window close button or ESC key
|
2013-11-19 02:38:44 +04:00
|
|
|
{
|
2013-11-23 16:30:54 +04:00
|
|
|
// Update
|
2013-11-28 22:59:56 +04:00
|
|
|
//----------------------------------------------------------------------------------
|
2013-11-23 16:30:54 +04:00
|
|
|
// TODO: Update your variables here
|
2013-11-28 22:59:56 +04:00
|
|
|
//----------------------------------------------------------------------------------
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2013-11-23 16:30:54 +04:00
|
|
|
// Draw
|
2013-11-28 22:59:56 +04:00
|
|
|
//----------------------------------------------------------------------------------
|
2013-11-23 16:30:54 +04:00
|
|
|
BeginDrawing();
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2013-11-23 16:30:54 +04:00
|
|
|
ClearBackground(RAYWHITE);
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2013-11-28 22:59:56 +04:00
|
|
|
DrawText("Congrats! You created your first window!", 190, 200, 20, LIGHTGRAY);
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2013-11-19 02:38:44 +04:00
|
|
|
EndDrawing();
|
2013-11-28 22:59:56 +04:00
|
|
|
//----------------------------------------------------------------------------------
|
2013-11-19 02:38:44 +04:00
|
|
|
}
|
|
|
|
|
2013-11-23 16:30:54 +04:00
|
|
|
// De-Initialization
|
2015-08-27 17:13:31 +03:00
|
|
|
//--------------------------------------------------------------------------------------
|
2013-11-23 16:30:54 +04:00
|
|
|
CloseWindow(); // Close window and OpenGL context
|
2013-11-28 22:59:56 +04:00
|
|
|
//--------------------------------------------------------------------------------------
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2013-11-19 02:38:44 +04:00
|
|
|
return 0;
|
2014-09-21 16:26:42 +04:00
|
|
|
}
|