mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
39 lines
990 B
C++
39 lines
990 B
C++
/*
|
|
* GDevelop Core
|
|
* Copyright 2008-2016 Florian Rival (Florian.Rival@gmail.com). All rights
|
|
* reserved. This project is released under the MIT License.
|
|
*/
|
|
#pragma once
|
|
|
|
namespace gd {
|
|
class Platform;
|
|
class Project;
|
|
class ArbitraryResourceWorker;
|
|
class Effect;
|
|
} // namespace gd
|
|
|
|
namespace gd {
|
|
|
|
/**
|
|
* \brief
|
|
*/
|
|
class GD_CORE_API ResourceExposer {
|
|
public:
|
|
/**
|
|
* \brief Called ( e.g. during compilation ) so as to inventory internal
|
|
* resources, sometimes update their filename or any other work or resources.
|
|
*
|
|
* See WholeProjectRefactorer for the same thing for events.
|
|
*
|
|
* \see WholeProjectRefactorer
|
|
* \see ArbitraryResourceWorker
|
|
*/
|
|
static void ExposeWholeProjectResources(gd::Project &project,
|
|
gd::ArbitraryResourceWorker &worker);
|
|
|
|
static void ExposeEffectResources(gd::Platform &platform, gd::Effect &effect,
|
|
gd::ArbitraryResourceWorker &worker);
|
|
};
|
|
|
|
} // namespace gd
|