1 // SHE library 2 // Copyright (C) 2017 David Capello 3 // 4 // This file is released under the terms of the MIT license. 5 // Read LICENSE.txt for more information. 6 7 #ifndef SHE_SURFACE_LIST_H_INCLUDED 8 #define SHE_SURFACE_LIST_H_INCLUDED 9 #pragma once 10 11 #include <vector> 12 13 namespace she { 14 15 class Surface; 16 17 typedef std::vector<Surface*> SurfaceList; 18 19 } // namespace she 20 21 #endif 22