19 lines
390 B
C++
19 lines
390 B
C++
#ifndef __JABYENGINE_CD_HPP__
|
|
#define __JABYENGINE_CD_HPP__
|
|
#include <stdint.h>
|
|
|
|
namespace JabyEngine {
|
|
namespace CD {
|
|
namespace CircularBuffer {
|
|
extern uint8_t* write_ptr;
|
|
extern uint8_t* read_ptr;
|
|
extern uint8_t* end_ptr;
|
|
}
|
|
|
|
enum struct State {
|
|
};
|
|
|
|
extern State state;
|
|
}
|
|
}
|
|
#endif //!__JABYENGINE_CD_HPP__
|