SuperMarioOdysseyOnline/include/al/layout/IUseLayout.h

18 lines
314 B
C
Raw Normal View History

2022-06-16 21:33:18 +00:00
/**
* @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