Files
factory-hole-core/include/Components/Support.h
2026-02-09 00:53:38 +09:00

19 lines
295 B
C

#pragma once
#include <stdint.h>
struct Support
{
uint8_t MaxSupport : 5;
bool SupportsUp : 1;
bool SupportsRight : 1;
bool SupportsLeft : 1;
uint8_t SupportsAvailable : 5;
bool SupportedByBottom : 1;
bool SupportedByRight : 1;
bool SupportedByLeft : 1;
};
struct RequiresSupport
{
};