This repository has been archived on 2025-03-20. You can view files and clone it, but cannot push or open issues or pull requests.
The-Powder-Toy/tptlibrary/tpt_syscalls.h
2012-09-10 12:47:25 +01:00

18 lines
367 B
C

#ifndef TPT_SYSCALLS_H
#define TPT_SYSCALLS_H
float sin(float value);
float cos(float value);
float atan2(float x, float y);
float sqrt(float value);
float floor(float value);
float ceil(float value);
void print(char * message);
void error(char * message);
int partCreate(int i, int x, int y, int type);
void partChangeType(int i, int x, int y, int type);
#endif