Skip to content
View chunkyguy's full-sized avatar

Organizations

@EpicGames @whackylabs

Block or report chunkyguy

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

Pinned Loading

  1. hideous-engine hideous-engine Public

    2D game engine for mobile devices made with OpenGL ES and C++

    HTML 1 1

  2. PhotoApp PhotoApp Public

    Making the same app using various frameworks

    C++ 13 1

  3. MetalScroller MetalScroller Public

    Metal with UIScrollView

    Objective-C 11

  4. MoveMe MoveMe Public

    Classic demo of user interaction and animation.

    Objective-C 7

  5. Poor man's State and Binding without... Poor man's State and Binding without SwiftUI
    1
    @dynamicMemberLookup
    2
    class Variable<T> {
    3
        var value: T {
    4
            get { sub.value }
    5
            set { sub.value = newValue }
  6. Service Locator Pattern with Gamepla... Service Locator Pattern with GameplayKit
    1
    private class ServiceWrapper<T>: GKComponent {
    2
        let service: T
    3
    
                  
    4
        init(service: T) {
    5
            self.service = service