mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
5786db3a26
Summary: @public This compiles but this does not work. To make it actually work we have to implement all missing functions in `Color.cpp` and co. Reviewed By: fkgozali Differential Revision: D8655537 fbshipit-source-id: 564fb7131445af81cf05407239dc6ba870cf6b83
22 lines
385 B
C++
22 lines
385 B
C++
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
struct ColorComponents {
|
|
float red {0};
|
|
float green {0};
|
|
float blue {0};
|
|
float alpha {0};
|
|
};
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|