Fumofumotris/source/io/platforms/platform.h
Julia bc0007b588 input for the hundreth time
PLEASE I JUSR WANT TO BE DONE WITH IT
2024-04-25 02:04:43 -05:00

23 lines
401 B
C

#pragma once
#include <iso646.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include "fumotris.h"
#include "gametime.h"
#ifdef _WIN32
#include "win.h"
#endif
bool PlatformInit();
bool PlatformGetRefreshRate(u16f *out);
bool PlatformReadInput(struct RecordBuffer *in, struct StringBuffer *str);
bool PlatformStopInput();
bool PlatformWait(Time duration);