Skip to content

Commit a23eef9

Browse files
committed
Light: Started with the Light GameObject for having multiple lights
1 parent 7e7f6fc commit a23eef9

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#include "Core/GameObject/Light/Light.h"
2+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#pragma once
2+
#include <iostream>
3+
#include "Core/GameObject/GameObject.h"
4+
5+
class Light : public GameObject {
6+
public:
7+
Light();
8+
9+
void Init() override;
10+
void Update() override;
11+
};

0 commit comments

Comments
 (0)