1
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 lines
187 B

#pragma once
// Old interface for compatibility with plugins
class UIDelegate_v1
{
public:
virtual void Run(void) = 0;
virtual void Dispose(void) = 0;
};
void Hooks_UI_Commit(void);