mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-12 10:18:16 +00:00
13 lines
256 B
C++
13 lines
256 B
C++
#pragma once
|
|
|
|
namespace al {
|
|
|
|
template <int T>
|
|
class StringTmp : public sead::BufferedSafeStringBase<char> {
|
|
public:
|
|
inline StringTmp() : sead::BufferedSafeStringBase<char>(this->mTop, T) {
|
|
assureTerminationImpl_();
|
|
}
|
|
};
|
|
} // namespace al
|