19 lines
295 B
C
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
|
|
{
|
|
}; |