mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-23 21:39:48 +00:00
18 lines
159 B
C
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
|
|
|