mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-13 02:38:11 +00:00
9 lines
121 B
C++
9 lines
121 B
C++
#pragma once
|
|
|
|
namespace al {
|
|
class IUseName {
|
|
public:
|
|
virtual const char* getName() const = 0;
|
|
};
|
|
} // namespace al
|