This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class SomethingElse | |
{ | |
} | |
class Something | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Console\Commands; | |
use App\Support\HashIds; | |
use Illuminate\Console\Command; | |
use Illuminate\Contracts\Container\BindingResolutionException; | |
use Spatie\ModelInfo\ModelFinder; | |
use Str; | |
class GetHashIdCommand extends Command |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEditor; | |
using UnityEngine; | |
namespace Game.Util.Extensions | |
{ | |
public class GizmoExtension | |
{ | |
public static void DrawString(string text, Vector3 worldPosition, Color textColor, Vector2 anchor, float textSize = 15f) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "Reflection/FunctionCallUtil.h" | |
FFunctionCallParamInfo::FFunctionCallParamInfo() = default; | |
FFunctionCallParamInfo::FFunctionCallParamInfo(bool InIsReturnParam, const FString& InName, int InIndex, FProperty* InProperty): | |
IsReturnParam(InIsReturnParam), | |
Name(InName), | |
Index(InIndex), | |
Property(InProperty) {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "UI/UMGSplitter.h" | |
#include "Widgets/SWeakWidget.h" | |
#include UE_INLINE_GENERATED_CPP_BY_NAME(UMGSplitter) | |
#pragma region "Splitter Slot" | |
UUMGSplitterSlot::UUMGSplitterSlot(const FObjectInitializer& Oi): Super(Oi) { | |
Slot = nullptr; | |
} | |
void UUMGSplitterSlot::ReleaseSlateResources(bool bReleaseChildren) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package icons_service | |
import ( | |
"context" | |
"fmt" | |
"image" | |
"image/png" | |
"io" | |
"net/http" | |
"os" |
OlderNewer