| 70 | } |
| 71 | |
| 72 | void ScriptFile_ReadLine_Generic(asIScriptGeneric *gen) |
| 73 | { |
| 74 | CScriptFile *file = (CScriptFile*)gen->GetObject(); |
| 75 | std::string str = file->ReadLine(); |
| 76 | gen->SetReturnObject(&str); |
| 77 | } |
| 78 | |
| 79 | void ScriptFile_ReadInt_Generic(asIScriptGeneric *gen) |
| 80 | { |
nothing calls this directly
no test coverage detected