Skip to content

Instantly share code, notes, and snippets.

@genuinelucifer
Created May 8, 2015 10:39
Show Gist options
  • Save genuinelucifer/e5f76649c05ffaf4f1c3 to your computer and use it in GitHub Desktop.
Save genuinelucifer/e5f76649c05ffaf4f1c3 to your computer and use it in GitHub Desktop.
index 1e1a59a..9a8b0b5 100644
--- a/examples/SDL/SDL.cs
+++ b/examples/SDL/SDL.cs
@@ -10,7 +10,7 @@ public void Setup(Driver driver)
var options = driver.Options;
options.LibraryName = "SDL";
options.Headers.Add("SDL.h");
- options.addIncludeDirs("../../../examples/SDL/SDL-2.0/include");
+ options.addIncludeDirs("../../examples/SDL/SDL-2.0/include");
options.OutputDir = "SDL";
}
diff --git a/src/AST/Class.cs b/src/AST/Class.cs
index 45b535f..8d5fabe 100644
--- a/src/AST/Class.cs
+++ b/src/AST/Class.cs
@@ -10,7 +10,8 @@ public enum AccessSpecifier
{
Private,
Protected,
- Public
+ Public,
+ Internal //via the CS_INTERNAL macro
:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment