This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
typedef struct Log Log; | |
struct Log { | |
float score; | |
float moves; | |
}; | |
typedef struct LogBuffer LogBuffer; | |
struct LogBuffer { | |
Log *logs; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
typedef struct Log Log; | |
struct Log { | |
float score; | |
float moves; | |
}; | |
typedef struct LogBuffer LogBuffer; | |
struct LogBuffer { | |
Log *logs; |
NewerOlder