mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 20:12:30 +01:00
7cb1790789
* generate c includes for img segments * flatten battle/item/dusty_hammer.c needs custom splat * use .inc.c for c incbins * fixy * new stuff * git subrepo pull (merge) --force tools/splat subrepo: subdir: "tools/splat" merged: "6120d18600" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "6120d18600" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo" commit: "2f68596" * remove dumb * git subrepo pull tools/splat subrepo: subdir: "tools/splat" merged: "8a179e74ba" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "8a179e74ba" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo" commit: "2f68596" * yaml cleaning * Further yaml cleanup & battle item refactor * remove rawptr * git subrepo pull tools/splat subrepo: subdir: "tools/splat" merged: "fe30b60b75" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "fe30b60b75" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo" commit: "2f68596" * further cleanup * Further cleanup & match gfx_draw_background * clean & wip Co-authored-by: Alex Bates <hi@imalex.xyz>
18 lines
329 B
C
18 lines
329 B
C
#ifndef _COMMON_H_
|
|
#define _COMMON_H_
|
|
|
|
#include "ultra64.h"
|
|
#include "types.h"
|
|
#include "common_structs.h"
|
|
#include "functions.h"
|
|
#include "variables.h"
|
|
#include "macros.h"
|
|
#include "enums.h"
|
|
#include "si.h"
|
|
#include "messages.h"
|
|
|
|
// these are just for the permuter
|
|
extern int TEXEL0, TEXEL1, PRIMITIVE, PRIMITIVE_ALPHA;
|
|
|
|
#endif
|