-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ALTV-426 Add Interior class #106
base: master
Are you sure you want to change the base?
Conversation
script-objects/IInterior.h
Outdated
virtual uint16_t GetRoomCount() const = 0; | ||
virtual uint16_t GetPortalCount() const = 0; | ||
virtual alt::Position GetPosition() const = 0; | ||
virtual alt::Position GetRotation() const = 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
alt::Position?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
virtual ~IInterior() = default; | ||
|
||
public: | ||
struct ExtentInfo |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we rename this struct to AABB (Axis-aligned bounding box) and move to some shared file ie (types/AABB.h)
No description provided.