Parks-n-Rec/include/parks/status.h

17 lines
297 B
C
Raw Normal View History

2023-06-12 20:00:53 -04:00
//
// 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;
2023-06-15 21:16:48 -04:00
static int LOADER_ERROR = 4;
2023-06-12 20:00:53 -04:00
}
#endif //PARKSNREC_STATUS_H