mirror of
https://github.com/Steffo99/keep-everything-alive.git
synced 2024-11-23 18:04:18 +00:00
11 lines
209 B
C#
11 lines
209 B
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
public class TestMicrogame : MicrogameController
|
|||
|
{
|
|||
|
public override bool MicrogameResults() {
|
|||
|
return true;
|
|||
|
}
|
|||
|
}
|