mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-08 22:08:29 -05:00
11 lines
145 B
C++
11 lines
145 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class IObjContainer
|
|
{
|
|
public:
|
|
virtual ~IObjContainer() = default;
|
|
|
|
virtual std::string GetName() = 0;
|
|
}; |