Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MorsGames
GitHub Repository: MorsGames/sm64plus
Path: blob/master/src/buffers/zbuffer.h
7858 views
1
#ifndef ZBUFFER_H
2
#define ZBUFFER_H
3
4
#include <PR/ultratypes.h>
5
6
#include "config.h"
7
#include "macros.h"
8
9
extern u16 gZBuffer[SCREEN_WIDTH * SCREEN_HEIGHT];
10
11
#endif // ZBUFFER_H
12
13