mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-01 01:32:39 +00:00
10 lines
180 B
C
10 lines
180 B
C
|
#pragma once
|
||
|
|
||
|
#include "MessageSystem.h"
|
||
|
|
||
|
namespace al {
|
||
|
class IUseMessageSystem {
|
||
|
public:
|
||
|
virtual al::MessageSystem *getMessageSystem() const = 0;
|
||
|
};
|
||
|
}
|