Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 13, 2011, 9:41:38 PM (13 years ago)
Author:
landauf
Message:

added console command "orxout" (and also "orxout_context")
re-added the shortcut commands log, error, warning, status, info, and debug
adjusted init.tcl

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/output/src/libraries/core/command/ConsoleCommandCompilation.h

    r8806 r8837  
    4343    _CoreExport std::string echo(const std::string& text);
    4444
     45    _CoreExport void orxout_level(const std::string& level_name, const std::string& text);
     46    _CoreExport void orxout_level_context(const std::string& level_name, const std::string& context_name, const std::string& text);
     47
     48    _CoreExport void log(const std::string& text);
     49    _CoreExport void error(const std::string& text);
     50    _CoreExport void warning(const std::string& text);
     51    _CoreExport void status(const std::string& text);
     52    _CoreExport void info(const std::string& text);
     53    _CoreExport void debug(const std::string& text);
     54
    4555    _CoreExport void write(const std::string& filename, const std::string& text);
    4656    _CoreExport void append(const std::string& filename, const std::string& text);
Note: See TracChangeset for help on using the changeset viewer.