mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-12 10:18:16 +00:00
12 lines
203 B
C++
12 lines
203 B
C++
/**
|
|
* @file IUseLayout.h
|
|
* @brief Interface for classes that are layouts.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "al/actor/IUseName.h"
|
|
|
|
namespace al {
|
|
class IUseLayout : public al::IUseName {};
|
|
} // namespace al
|