1
0
Fork 0
mirror of https://github.com/jugeeya/UltimateTrainingModpack.git synced 2025-01-21 09:50:16 +00:00
UltimateTrainingModpack/source/useful/useful.h

39 lines
583 B
C
Raw Normal View History

#ifndef USEFUL_H
#define USEFUL_H
#include <switch.h>
#include <string.h>
#include <stdio.h>
#define LOAD64 *(u64 *)
#define LINKABLE __attribute__ ((weak))
#define debug_log(...) \
{char log_buf[0x200]; snprintf(log_buf, 0x200, __VA_ARGS__); \
svcOutputDebugString(log_buf, strlen(log_buf));}
typedef struct Hash40 {
uint64_t hash : 40;
} Hash40;
typedef struct Vector2f {
float x;
float y;
} Vector2f;
typedef struct Vector3f {
float x;
float y;
float z;
} Vector3f;
typedef struct Vector4f {
float x;
float y;
float z;
float w;
}Vector4f;
#endif // USEFUL_H