#pragma once #include "..\munga\tool.h" //########################################################################## //############################ RPTool ################################ //########################################################################## class RPTool : public ApplicationTool { protected: Logical CreateMakeMessage(const char* class_name, Entity::MakeMessage *creation_message, NotationFile *model_file, const ResourceDirectories *directories); void CreateModelResource(ModelData &model_resources, const char *model_class, ResourceFile *resource_file, const char *model_name, NotationFile *model_file, const ResourceDirectories *directories); ResourceDescription::ResourceID CreateControlMappingStream(const char *model_class, const char *mapping_name, NotationFile *mapping_file, ResourceFile *resource_file, const char *model_name, NotationFile *model_file, const ResourceDirectories *directories, PlatformTool *current_tool); public: RPTool(PlatformTool *platform) : ApplicationTool(platform) {} };