spidey-decomp/stateflags.h
2024-06-17 22:48:44 +01:00

18 lines
159 B
C

#pragma once
#ifndef STATEFLAGS_H
#define STATEFLAGS_H
#include "my_types.h"
struct SStateFlags{
union {
i16 flags[2];
i32 bothFlags;
};
};
#endif