Sign in
skia
/
external
/
github.com
/
rive-app
/
rive-cpp
/
f0647c10a19ae96304ba0c76f3571023e78dc319
/
.
/
include
/
rive
/
animation
/
arithmetic_operation.hpp
blob: 1870b8dd7ceaebc9a8ea3415fd13ebb8fe9d84e2 [
file
] [
log
] [
blame
]
#ifndef
_RIVE_ARITHMETIC_OPERATION_HPP_
#define
_RIVE_ARITHMETIC_OPERATION_HPP_
namespace
rive
{
enum
class
ArithmeticOperation
:
int
{
add
=
0
,
subtract
=
1
,
multiply
=
2
,
divide
=
3
,
modulo
=
4
,
};
}
// namespace rive
#endif