mirror of
https://gitlab.com/klmp200/LO27.git
synced 2024-11-05 16:28:03 +00:00
20 lines
341 B
C
20 lines
341 B
C
|
/*
|
||
|
* @Author: klmp200
|
||
|
* @Date: 2016-12-27 19:59:21
|
||
|
* @Last Modified by: klmp200
|
||
|
* @Last Modified time: 2016-12-27 20:09:56
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <SDL2/SDL.h>
|
||
|
#include <pixel.h>
|
||
|
#include <matrix.h>
|
||
|
|
||
|
void SDL_test(){
|
||
|
PIXEL test;
|
||
|
Matrix gg = CreateMatrix();
|
||
|
SetCellValue(gg, 1, 1, true);
|
||
|
test.color = 1;
|
||
|
}
|