Files
player/Project/Src/Drive/Include/random.h

11 lines
120 B
C
Raw Normal View History

2025-06-27 00:32:57 +08:00
#ifndef RANDOM_H__
#define RANDOM_H__
#include "stdint.h"
2025-06-27 00:32:57 +08:00
void RANDOM_Init(void);
2025-06-27 00:32:57 +08:00
uint32_t RANDOM_Get(void);
2025-06-27 00:32:57 +08:00
#endif