mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-23 09:04:21 +00:00
13 lines
225 B
C++
13 lines
225 B
C++
#pragma once
|
|
|
|
#include "Library/HostIO/IUseName.h"
|
|
|
|
namespace al {
|
|
class LayoutActionKeeper;
|
|
|
|
class IUseLayoutAction : virtual public IUseName {
|
|
public:
|
|
virtual LayoutActionKeeper* getLayoutActionKeeper() const = 0;
|
|
};
|
|
}
|