6e8fbca745
match the genesis editor version 1.3.0.653.
24 lines
631 B
Objective-C
24 lines
631 B
Objective-C
#pragma once
|
|
//------------------------------------------------------------------------------
|
|
/**
|
|
@class Base::JobFuncDescBase
|
|
|
|
Platform-specific description of a Job function. This can be a simple
|
|
pointer to a function if the job system works with simple CPU threads,
|
|
or anything else.
|
|
|
|
(C) 2009 Radon Labs GmbH
|
|
*/
|
|
#include "core/types.h"
|
|
|
|
//------------------------------------------------------------------------------
|
|
namespace Base
|
|
{
|
|
class JobFuncDescBase
|
|
{
|
|
// empty, must be overriden in subclass
|
|
};
|
|
|
|
};
|
|
//------------------------------------------------------------------------------
|
|
|