genesis-3d_engine/Engine/foundation/jobs/base/jobfuncdescbase.h
zhongdaohuan 6e8fbca745 genesis-3d engine version 1.3.
match the genesis editor version 1.3.0.653.
2014-05-05 14:50:33 +08:00

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
};
};
//------------------------------------------------------------------------------