aseprite/src/app/shade.h
2016-08-29 13:08:21 -03:00

25 lines
460 B
C++

// Aseprite
// Copyright (C) 2001-2015 David Capello
//
// This program is distributed under the terms of
// the End-User License Agreement for Aseprite.
#ifndef APP_SHADE_H_INCLUDED
#define APP_SHADE_H_INCLUDED
#pragma once
#include "app/color.h"
#include <vector>
namespace app {
typedef std::vector<app::Color> Shade;
Shade shade_from_string(const std::string& str);
std::string shade_to_string(const Shade& shade);
} // namespace app
#endif