LkEngine 0.1.2
 
Loading...
Searching...
No Matches
AssetEvent.h
1#pragma once
2
3#include "LkEngine/Core/Event/Event.h"
4
5
6namespace LkEngine {
7
8 class AssetEvent : public LEvent
9 {
10 public:
11 virtual ~AssetEvent() = default;
12 };
13
14}
Definition AssetEvent.h:9
Definition Event.h:71
Definition Asset.h:11