mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-12-23 05:53:34 +00:00
15 lines
363 B
C
15 lines
363 B
C
|
#ifndef IUGCMODULARBUILD_H
|
||
|
#define IUGCMODULARBUILD_H
|
||
|
|
||
|
#include <cstdint>
|
||
|
#include <optional>
|
||
|
#include <string>
|
||
|
|
||
|
class IUgcModularBuild {
|
||
|
public:
|
||
|
virtual void InsertUgcBuild(const std::string& modules, const LWOOBJID bigId, const std::optional<uint32_t> characterId) = 0;
|
||
|
virtual void DeleteUgcBuild(const LWOOBJID bigId) = 0;
|
||
|
};
|
||
|
|
||
|
#endif //!IUGCMODULARBUILD_H
|