neptools

Modding tools to Neptunia games
git clone https://git.neptards.moe/neptards/neptools.git
Log | Files | Refs | Submodules | README | LICENSE

eof_item.cpp (231B)


      1 #include "eof_item.hpp"
      2 #include "context.hpp"
      3 
      4 namespace Neptools
      5 {
      6 
      7   void EofItem::Inspect_(std::ostream& os, unsigned indent) const
      8   {
      9     Item::Inspect_(os, indent);
     10     os << "eof()";
     11   }
     12 
     13 }
     14 
     15 #include "eof_item.binding.hpp"