the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1
2
3#pragma once
4#undef __in
5#undef __out
6
7// standard C libraries
8#include <cstdio> // printf
9#include <cstdlib> // abort
10#include <cstring> // strlen
11#include <sys/spu_thread_group.h> // SYS_SPU_THREAD_GROUP_TYPE_EXCLUSIVE_NON_CONTEXT
12#include <sys/process.h> // SYS_PROCESS_PARAM
13#include <cell/spurs.h>
14
15#ifndef _CONTENTPACKAGE
16#include <spu_printf.h>
17#endif
18
19class C4JThread_SPU
20{
21
22 static cell::Spurs::Spurs2* ms_spurs2Object;
23
24
25public:
26
27 static void initSPURS();
28 static void shutdownSPURS();
29 static cell::Spurs::Spurs2* getSpurs2() { return ms_spurs2Object; }
30
31};