mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-04 14:02:45 +01:00
Merge pull request #4368 from lioncash/macro
macro: Resolve missing parameter in doxygen comment
This commit is contained in:
commit
9cca0c2f83
1 changed files with 2 additions and 1 deletions
|
@ -103,8 +103,9 @@ public:
|
||||||
virtual ~CachedMacro() = default;
|
virtual ~CachedMacro() = default;
|
||||||
/**
|
/**
|
||||||
* Executes the macro code with the specified input parameters.
|
* Executes the macro code with the specified input parameters.
|
||||||
* @param code The macro byte code to execute
|
*
|
||||||
* @param parameters The parameters of the macro
|
* @param parameters The parameters of the macro
|
||||||
|
* @param method The method to execute
|
||||||
*/
|
*/
|
||||||
virtual void Execute(const std::vector<u32>& parameters, u32 method) = 0;
|
virtual void Execute(const std::vector<u32>& parameters, u32 method) = 0;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue