mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-25 20:35:52 -04:00
ea9abed416
git-svn-id: svn://localhost@686 8062f311-0dae-4547-b526-b8ab9ac864a5
34 lines
709 B
C++
34 lines
709 B
C++
/** \file
|
|
* Game Develop
|
|
* 2008-2012 Florian Rival (Florian.Rival@gmail.com)
|
|
*/
|
|
|
|
#include "InstructionsMetadataHolder.h"
|
|
#include <string>
|
|
|
|
namespace gd
|
|
{
|
|
InstructionMetadata InstructionsMetadataHolder::badInstructionMetadata;
|
|
|
|
InstructionsMetadataHolder::InstructionsMetadataHolder()
|
|
{
|
|
//ctor
|
|
}
|
|
|
|
InstructionsMetadataHolder::~InstructionsMetadataHolder()
|
|
{
|
|
//dtor
|
|
}
|
|
|
|
const InstructionMetadata & InstructionsMetadataHolder::GetActionMetadata(std::string actionType) const
|
|
{
|
|
return badInstructionMetadata;
|
|
}
|
|
|
|
const InstructionMetadata & InstructionsMetadataHolder::GetConditionMetadata(std::string conditionType) const
|
|
{
|
|
return badInstructionMetadata;
|
|
}
|
|
|
|
}
|