Skip to content
View zimethsuki's full-sized avatar
💭
I may be slow to respond.
💭
I may be slow to respond.
  • Imaji Digistudio
  • Bekasi, Indonesia.

Block or report zimethsuki

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Contoh Singleton Sederhana #01 Contoh Singleton Sederhana #01
    1
    using UnityEngine;
    2
    using System.Collections;
    3
    
                  
    4
    public class SampleSingleton : MonoBehaviour {
    5
        public static SampleSingleton singleton;
  2. A sample of Unity BGM Manager #01 A sample of Unity BGM Manager #01
    1
    // Singleton terpisah.
    2
    
                  
    3
    using UnityEngine;
    4
    
                  
    5
    public class SampleBGMManager01 : MonoBehaviour