| 1234567891011121314151617181920 |
- #pragma once
- #include "stdio.h"
- #include "PolyString.h"
- #include "PolyObject.h"
- #include "OSBasics.h"
- #ifdef _WINDOWS
- #include <time.h>
- #include <io.h>
- #endif
- using namespace Polycode;
- class BuildArg {
- public:
- String name;
- String value;
- };
|