texture.h 221 B

1234567891011
  1. #pragma once
  2. #include "render.h"
  3. struct ICollection;
  4. struct Stack;
  5. typedef struct Texture {
  6. RTexture texture;
  7. } Texture;
  8. const Texture *textureGet(const char *name, struct ICollection *collection, struct Stack *tmp);