30 lines
588 B
C
30 lines
588 B
C
// this code is licenced under Wrathmark licence
|
|
// © 2026 wullie wulliestudio.com
|
|
// please see attached licence for full usage and rights
|
|
|
|
#ifndef STDWULLIE_H
|
|
#define STDWULLIE_H
|
|
|
|
// import everything
|
|
|
|
//types
|
|
#include "stdWullie/definitions/int.h"
|
|
#include "stdWullie/definitions/typeNull.h"
|
|
#include "stdWullie/definitions/typeBool.h"
|
|
|
|
// namespaces
|
|
#include "stdWullie/namespaces/print.h"
|
|
#include "stdWullie/namespaces/convert.h"
|
|
|
|
// errors & exits
|
|
#include "stdWullie/exit.h"
|
|
|
|
// time
|
|
#include "stdWullie/time.h"
|
|
|
|
|
|
// string extras
|
|
#include "stdWullie/String/colours.h"
|
|
|
|
#endif
|