Started work on build system
This commit is contained in:
15
fpc/public/runner.h
Normal file
15
fpc/public/runner.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef RUNNER_H
|
||||
#define RUNNER_H
|
||||
|
||||
#include "tier1/utlvector.h"
|
||||
#include "tier1/utlstring.h"
|
||||
|
||||
interface IRunner
|
||||
{
|
||||
public:
|
||||
static int Run( CUtlString szName, CUtlVector<CUtlString>& args );
|
||||
static int Run( CUtlString szName, CUtlString szDirectory, CUtlVector<CUtlString>& args );
|
||||
static int Run( CUtlString szName, CUtlString szDirectory, CUtlVector<CUtlString>& args, CUtlVector<CUtlString>& environment );
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user