Files
o3de/Code/Tools/Standalone/Source/LUA/BasicScriptChecker.h
T
2021-06-23 10:55:22 -07:00

27 lines
504 B
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#ifndef BASICSCRIPTCHECKER_H
#define BASICSCRIPTCHECKER_H
#include <AzCore/base.h>
#include <AzCore/Memory/SystemAllocator.h>
namespace LUAEditor
{
class BasicScriptChecker
{
public:
AZ_CLASS_ALLOCATOR(BasicScriptChecker, AZ::SystemAllocator, 0);
// eat a script and export any errors:
void ConsumeScript (
};
}
#endif