27 lines
572 B
C++
27 lines
572 B
C++
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// NoesisGUI - http://www.noesisengine.com
|
|
// Copyright (c) 2013 Noesis Technologies S.L. All Rights Reserved.
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __GUI_VALUEDESTINATION_H__
|
|
#define __GUI_VALUEDESTINATION_H__
|
|
|
|
|
|
namespace Noesis
|
|
{
|
|
namespace Value
|
|
{
|
|
enum Destination
|
|
{
|
|
Destination_BaseValue,
|
|
Destination_Animation,
|
|
//Destination_Expression,
|
|
Destination_CurrentValue
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif
|