mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-09 12:42:54 +00:00
20 lines
328 B
C++
20 lines
328 B
C++
/*
|
|
* Copyright (c) 2021, Jesse Buhagiar <jooster669@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/String.h>
|
|
|
|
#include "Common.h"
|
|
#include "Mesh.h"
|
|
|
|
class MeshLoader {
|
|
public:
|
|
MeshLoader() { }
|
|
virtual ~MeshLoader() { }
|
|
|
|
virtual RefPtr<Mesh> load(const String& fname) = 0;
|
|
};
|