13 lines
273 B
C
13 lines
273 B
C
#pragma once
|
|
|
|
// Rotation applied to a building's surface_mask when placed. Also the direction
|
|
// of an output port or belt flow.
|
|
// North = -Y (up), East = +X (right), South = +Y (down), West = -X (left).
|
|
enum class Rotation
|
|
{
|
|
North,
|
|
East,
|
|
South,
|
|
West,
|
|
};
|