Ark Server API (ASA) - Wiki
Loading...
Searching...
No Matches
SingleThreadRunnable.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreTypes.h"
6
7/**
8 * Interface for ticking runnables when there's only one thread available and
9 * multithreading is disabled.
10 */
12{
13public:
14
15 virtual ~FSingleThreadRunnable() { }
16
17 /* Tick function. */
18 virtual void Tick() = 0;
19};
virtual void Tick()=0