mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-05 21:57:20 +00:00
8e81fb808d
This is a base library that will be used by SkinTheme to draw parts with CSS styles (or something similar).
20 lines
431 B
C
20 lines
431 B
C
// Aseprite CSS Library
|
|
// Copyright (C) 2013 David Capello
|
|
//
|
|
// This source file is distributed under MIT license,
|
|
// please read LICENSE.txt for more information.
|
|
|
|
#ifndef CSS_CSS_H_INCLUDED
|
|
#define CSS_CSS_H_INCLUDED
|
|
|
|
#include "css/compound_style.h"
|
|
#include "css/query.h"
|
|
#include "css/rule.h"
|
|
#include "css/sheet.h"
|
|
#include "css/state.h"
|
|
#include "css/stateful_style.h"
|
|
#include "css/style.h"
|
|
#include "css/value.h"
|
|
|
|
#endif
|