mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-17 17:05:09 +00:00
9 lines
123 B
C
9 lines
123 B
C
|
#pragma once
|
||
|
|
||
|
namespace al {
|
||
|
class IUseExecutor {
|
||
|
public:
|
||
|
virtual void execute() = 0;
|
||
|
virtual void draw() = 0;
|
||
|
};
|
||
|
}
|