38 lines
858 B
C
38 lines
858 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"
|
|
#include "stdWullie/namespaces/random.h"
|
|
|
|
// errors & exits
|
|
#include "stdWullie/exit.h"
|
|
|
|
// time
|
|
#include "stdWullie/time.h"
|
|
|
|
// file handling
|
|
#include "stdWullie/definitions/umodetypes.h"
|
|
#include "stdWullie/filehandle/closeOpen.h"
|
|
#include "stdWullie/filehandle/readWrite.h"
|
|
#include "stdWullie/filehandle/mkdir.h"
|
|
|
|
|
|
// string
|
|
#include "stdWullie/String/colours.h"
|
|
|
|
// congtates youse have made it to the end
|
|
#endif
|