mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
Fixed missing semicolons
This commit is contained in:
@@ -50,7 +50,7 @@ class MaterialProcessor : IAssetProcessor
|
||||
return new AssetProcessorConfig();
|
||||
}
|
||||
|
||||
public static Type ProcessedAssetType => typeof(NewMaterialFile)
|
||||
public static Type ProcessedAssetType => typeof(NewMaterialFile);
|
||||
|
||||
public Result<void> Process(ImportedResource importedResource, AssetConfig config, List<ProcessedResource> outProcessedResources)
|
||||
{
|
||||
|
||||
@@ -9,7 +9,7 @@ namespace GlitchyEngine.Events
|
||||
[Inline]
|
||||
public Key KeyCode => _keyCode;
|
||||
|
||||
public override EventCategory Category => .Input | .Keyboard
|
||||
public override EventCategory Category => .Input | .Keyboard;
|
||||
|
||||
protected this(Key keyCode)
|
||||
{
|
||||
@@ -61,7 +61,7 @@ namespace GlitchyEngine.Events
|
||||
[Inline]
|
||||
public char16 Char => _char;
|
||||
|
||||
public override EventCategory Category => .Input | .Keyboard
|
||||
public override EventCategory Category => .Input | .Keyboard;
|
||||
|
||||
public override EventType EventType => .KeyTyped;
|
||||
public static EventType StaticType => .KeyTyped;
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace GlitchyEngine.Renderer
|
||||
/**
|
||||
* Returns the size in bytes of an index of the IndexFormat.
|
||||
*/
|
||||
public int IndexSize => this == Index16Bit ? 2 : 4
|
||||
public int IndexSize => this == Index16Bit ? 2 : 4;
|
||||
}
|
||||
|
||||
public class IndexBuffer : Buffer
|
||||
|
||||
@@ -22,7 +22,7 @@ namespace GlitchyEngine
|
||||
Icon = icon;
|
||||
}
|
||||
|
||||
public static readonly WindowDescription Default => .(1280, 720, "Glitchy Engine")
|
||||
public static readonly WindowDescription Default => .(1280, 720, "Glitchy Engine");
|
||||
}
|
||||
|
||||
public class Window
|
||||
|
||||
Reference in New Issue
Block a user