Skip to content

Commit 7c6abc5

Browse files
committed
major system classes added
1 parent d6b7ee0 commit 7c6abc5

File tree

6 files changed

+78
-0
lines changed

6 files changed

+78
-0
lines changed

Audio/AudioController.cs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+

2+
using UnityEngine;
3+
4+
namespace UnityCore {
5+
6+
namespace Audio {
7+
8+
public class AudioController : MonoBehaviour
9+
{
10+
11+
}
12+
}
13+
}

Data/DataController.cs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+

2+
using UnityEngine;
3+
4+
namespace UnityCore {
5+
6+
namespace Data {
7+
8+
public class DataController : MonoBehaviour
9+
{
10+
11+
}
12+
}
13+
}

Menu/Page.cs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+

2+
using UnityEngine;
3+
4+
namespace UnityCore {
5+
6+
namespace Menu {
7+
8+
public class Page : MonoBehaviour
9+
{
10+
11+
}
12+
}
13+
}

Menu/PageController.cs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+

2+
using UnityEngine;
3+
4+
namespace UnityCore {
5+
6+
namespace Menu {
7+
8+
public class PageController : MonoBehaviour
9+
{
10+
11+
}
12+
}
13+
}

Scene/SceneController.cs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+

2+
using UnityEngine;
3+
4+
namespace UnityCore {
5+
6+
namespace Scene {
7+
8+
public class SceneController : MonoBehaviour
9+
{
10+
11+
}
12+
}
13+
}

Session/SessionController.cs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+

2+
using UnityEngine;
3+
4+
namespace UnityCore {
5+
6+
namespace Session {
7+
8+
public class SessionController : MonoBehaviour
9+
{
10+
11+
}
12+
}
13+
}

0 commit comments

Comments
 (0)