mirror of
https://gitlab.os-k.eu/os-k-team/kvisc.git
synced 2023-08-25 14:05:46 +02:00
17 lines
403 B
C
17 lines
403 B
C
// The OS/K Team licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
#include <cn/console.h>
|
|
|
|
void console_init(ctx_t *ctx)
|
|
{
|
|
/*
|
|
if (SDL_Init(SDL_INIT_VIDEO) < 0)
|
|
{
|
|
log("Couldn't initialize SDL: %s", SDL_GetError());
|
|
}
|
|
|
|
SDL_Window *win = SDL_CreateWindow("Hello World!", 100, 100, 640, 480, SDL_WINDOW_SHOWN);*/
|
|
}
|
|
|