15 lines
238 B
C#
15 lines
238 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class VoidLoader : SceneLoader
|
||
|
{
|
||
|
public override void StartLoad()
|
||
|
{
|
||
|
;
|
||
|
}
|
||
|
|
||
|
public override bool LoadComplete
|
||
|
=> true;
|
||
|
}
|