layout make lines non-fixed
This commit is contained in:
15
Source/LampshadeLine.h
Normal file
15
Source/LampshadeLine.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
class LampshadeLine {
|
||||
public:
|
||||
LampshadeLine(bool orientation, float x, float y) : orientation(orientation), x(x), y(y)
|
||||
{
|
||||
}
|
||||
|
||||
bool orientation;
|
||||
float x;
|
||||
float y;
|
||||
|
||||
const static bool Horizontal = 0;
|
||||
const static bool Vertical = 1;
|
||||
};
|
Reference in New Issue
Block a user