// Copyright (c) 2012-2019 Wojciech Figat. All rights reserved.
namespace Flax.Build.Bindings
{
///
/// The custom C++ code injection information for bindings generator.
///
public class InjectCppCodeInfo : ApiTypeInfo
{
public string Code;
///
public override string ToString()
{
return Code;
}
}
}