17 lines
297 B
C
17 lines
297 B
C
|
//
|
||
|
// Created by brett on 6/8/23.
|
||
|
//
|
||
|
|
||
|
#ifndef PARKSNREC_STATUS_H
|
||
|
#define PARKSNREC_STATUS_H
|
||
|
|
||
|
namespace parks {
|
||
|
static int NO_ERROR = 0;
|
||
|
static int GLFW_ERROR = 1;
|
||
|
static int GL_ERROR = 2;
|
||
|
static int TYPE_FAILURE = 3;
|
||
|
static int LOADER_ERROR = 4;
|
||
|
}
|
||
|
|
||
|
#endif //PARKSNREC_STATUS_H
|