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

16 lines
264 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;
}
#endif //PARKSNREC_STATUS_H