25 lines
454 B
C++
25 lines
454 B
C++
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: AuGrug.hpp
|
|
Date: 2022-02-03
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
#include "AuGrugThread.hpp"
|
|
#include "AuArrow.hpp"
|
|
|
|
namespace Aurora::Grug
|
|
{
|
|
void GrugFlushWrites();
|
|
void GrugFlushFlushs();
|
|
void NotifyGrugOfLogs();
|
|
void NotifyGrugOfTelemetry();
|
|
|
|
void DrachenlordScreech();
|
|
bool IsGrug();
|
|
|
|
void InitGrug();
|
|
void DeinitGrug();
|
|
} |