SSH into Root
$ ssh [email protected]
Change Root Password
#include "Game/CreteGameInstance.h" | |
#include "Kismet/GameplayStatics.h" | |
#include "Engine/World.h" | |
UCreteGameInstance::UCreteGameInstance() | |
{ | |
} | |
void UCreteGameInstance::Init() |
#pragma once | |
#include "CoreMinimal.h" | |
#include "OnlineSubsystem.h" | |
#include "OnlineSessionSettings.h" | |
#include "Interfaces/OnlineSessionInterface.h" | |
#include "Engine/GameInstance.h" | |
#include "CreteGameInstance.generated.h" |
using UnrealBuildTool; | |
public class MultiplayerTest : ModuleRules | |
{ | |
public MultiplayerTest(ReadOnlyTargetRules Target) : base(Target) | |
{ | |
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs; | |
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "HeadMountedDisplay" }); | |
[/Script/Engine.GameEngine] | |
;+NetDriverDefinitions=(DefName="GameNetDriver",DriverClassName="OnlineSubsystemSteam.SteamNetDriver",DriverClassNameFallback="OnlineSubsystemUtils.IpNetDriver") | |
[OnlineSubsystem] | |
DefaultPlatformService=NULL | |
[OnlineSubsystemSteam] | |
bEnabled=true | |
SteamDevAppId=480 | |
GameServerQueryPort=27015 |
/** | |
* GRID SERIALIZATION CONCEPT FOR SAVING WORLD GRID DATA | |
* | |
* Each GRID location will be stored as an signed int32 (eg. -1,999,999,999) - 4 BYTES | |
* This will be a basic serialization of all the information on the grid. | |
* | |
* This information will be stored as follows: | |
* | |
* -/+ This acts as a switch and usually doubles the possibilities of each ID |
set nocompatible " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" alternatively, pass a path where Vundle should install plugins | |
" call vundle#begin('~/some/path/here') |
SSH into Root
$ ssh [email protected]
Change Root Password
#******************************************************************** | |
# Ubuntu Setup Steps for initial install PLUS | |
# Ruby on Rails setup using PostreSQL | |
# | |
# by: Jay Elbourne | |
# date: March 2016 | |
# Ubuntu 15.10 (32 bit [because of VirtualBox]) | |
# Ruby 2.2.3 | |
# Rails 4.2.4 | |
# PostreSQL 9.5 |