Skip to content
View inutamago-dogegg's full-sized avatar
  • Tokyo Institute of Technology

Highlights

  • Pro

Organizations

@BSGJ2023-T-Team07
Block or Report

Block or report inutamago-dogegg

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse
inutamago-dogegg/README.md

Pinned

  1. AliasMethod.cs AliasMethod.cs
    1
    using System;
    2
    using System.Collections.Generic;
    3
    using System.Linq;
    4
    
                  
    5
    public class AliasMethod {
  2. BSGJ2023-T-Team07/MemoryTranser BSGJ2023-T-Team07/MemoryTranser Public

    めもとらの本開発リポジトリ

    C#

  3. UnityEngine.Vector2 extension method... UnityEngine.Vector2 extension methods using in my game
    1
    using System;
    2
    using UnityEngine;
    3
    
                  
    4
    public static class Vector2Extension {
    5
        /// <summary>
  4. SingletonMonoBehaviour.cs SingletonMonoBehaviour.cs
    1
    using System;
    2
    using UnityEngine;
    3
    
                  
    4
    public abstract class SingletonMonoBehaviour<T> : MonoBehaviour where T : SingletonMonoBehaviour<T> {
    5
        [SerializeField] protected bool DontDestroy = false;