sprites on screen yay
This commit is contained in:
21
src/game/state/play/play.h
Normal file
21
src/game/state/play/play.h
Normal file
@ -0,0 +1,21 @@
|
||||
#pragma once
|
||||
|
||||
#include "../STATE_COMMON.h"
|
||||
|
||||
#include "../../ecs/ecs.h"
|
||||
|
||||
#define PLAY_SHADER_COUNT 2
|
||||
static const ShaderType PLAY_SHADERS[PLAY_SHADER_COUNT] =
|
||||
{
|
||||
SHADER_TEXTURE_QUAD,
|
||||
SHADER_TRIANGLE
|
||||
};
|
||||
|
||||
|
||||
#define PLAY_TEXTURE_COUNT 1
|
||||
static const TextureType PLAY_TEXTURES[PLAY_TEXTURE_COUNT] =
|
||||
{
|
||||
TEXTURE_TEST
|
||||
};
|
||||
|
||||
void play_init(Play* play, State* state);
|
Reference in New Issue
Block a user