-
Notifications
You must be signed in to change notification settings - Fork 35
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
Decoded several IAnimationBuffer virtual functions #157
base: master
Are you sure you want to change the base?
Conversation
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.
Thanks.
Please fix the checks. |
static constexpr const char* ALIAS = NAME; | ||
|
||
virtual bool Initialize() = 0; | ||
virtual bool Load(); |
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.
I see the the rest of the class is virtual, why do you need to define these methods then?
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.
Are you talking about defining the methods in general for IAnimationBuffer? Or the specific implementations?
If it's the latter case those are methods I found to have some level of base implementation, which I assumed could be relevant. But in hindsight it seems unnecessary
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.
The specific implementation for these methods https://github.com/WopsS/RED4ext.SDK/pull/157/files#diff-02e0f54aa59dc27be0144120e671cfde17e58c320b3d958b416466509d0605b9R7-R82.
No description provided.