polserver/pol-core/bscript/bapplicobj.cpp

12 lines
214 B
C++
Raw Permalink Normal View History

#include "bscript/bapplicobj.h"
#include <fmt/format.h>
namespace Pol::Bscript
{
std::string BApplicObjBase::getStringRep() const
{
return fmt::format( "<appobj:{}>", typeOf() );
}
} // namespace Pol::Bscript