mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-16 16:35:10 +00:00
18 lines
No EOL
314 B
C++
18 lines
No EOL
314 B
C++
/**
|
|
* @file IUseLayout.h
|
|
* @brief Interface for classes that are layouts.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "al/actor/IUseName.h"
|
|
|
|
namespace al {
|
|
|
|
struct LayoutKeeper;
|
|
|
|
class IUseLayout : virtual public al::IUseName {
|
|
public:
|
|
virtual al::LayoutKeeper* getLayoutKeeper(void) const = 0;
|
|
};
|
|
} // namespace al
|