1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-07-01 02:01:45 +02:00
GiantsTools/Sdk/Include/IComponent.h

15 lines
383 B
C
Raw Normal View History

2020-08-27 08:10:21 +02:00
#pragma once
#include <Unknwn.h>
// {779CF758-3E3F-4FEE-9513-60106522686A}
2020-09-22 07:30:26 +02:00
inline const GUID IID_IComponent = { 0x779cf758, 0x3e3f, 0x4fee, 0x95, 0x13, 0x60, 0x10, 0x65, 0x22, 0x68, 0x6a };
2020-08-27 08:10:21 +02:00
/// <summary>
/// Base interface for a game COM component.
/// </summary>
struct IComponent : public IUnknown
{
};
struct DECLSPEC_UUID("{779CF758-3E3F-4FEE-9513-60106522686A}") IComponent;