1// LAF OS Library
2// Copyright (c) 2020 Igara Studio S.A.
3// Copyright (c) 2017 David Capello
4//
5// This file is released under the terms of the MIT license.
6// Read LICENSE.txt for more information.
7
8#ifndef OS_SURFACE_LIST_H_INCLUDED
9#define OS_SURFACE_LIST_H_INCLUDED
10#pragma once
11
12#include "os/surface.h"
13
14#include <vector>
15
16namespace os {
17
18 using SurfaceList = std::vector<SurfaceRef>;
19
20} // namespace os
21
22#endif
23