Skip to content
Permalink
master
Go to file
 
 
Cannot retrieve contributors at this time
27 lines (21 sloc) 552 Bytes
//
// write surface.hpp
// Simpleton Engine
//
// Created by Indi Kernick on 27/12/17.
// Copyright © 2017 Indi Kernick. All rights reserved.
//
#ifndef engine_graphics_2d_write_surface_hpp
#define engine_graphics_2d_write_surface_hpp
#include <stdexcept>
#include "surface.hpp"
#include <string_view>
namespace G2D {
class SurfaceWriteError final : public std::runtime_error {
public:
explicit SurfaceWriteError(std::string_view);
};
void writeSurface(std::string_view, const Surface &);
}
#include "write surface.inl"
#endif
You can’t perform that action at this time.