Skip to content
View Z1KOx's full-sized avatar

Organizations

@Ptr2Src

Block or report Z1KOx

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
Z1KOx/README.md
#include <string>
#include <initializer_list>

class User
{
public:
    explicit User( const std::string& name, const std::string& country, const std::initializer_list<std::string>& langs )
        : m_name( name ), m_country( country ), m_langs( langs )
    { }

    ~User() noexcept = default;
    User( const User& ) = delete;
    User( User&& ) = delete;
    User& operator=( const User& ) = delete;
    User& operator=( User&& ) = delete;

private:
    const std::string m_name, m_country;
    const std::initializer_list<std::string> m_langs;
};

int main() {
    const User Z1KO( "Daniel", "Germany", { "C", "C++", "Rust", "Assembly" } );
}

Pinned Loading

  1. WndAPI Public

    Just a small project where I’m tweaking the API over time.

    C++

  2. NtExecutorAPI Public

    A simple tool to resolve and invoke NT functions

    C++

  3. MemoryAPI Public

    A tool for analyzing memory and processes in game hacking.

    C++ 1