Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
L3 - Projet programmation 2
Manage
Activity
Members
Labels
Plan
Issues
4
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
v-lafeychine
L3 - Projet programmation 2
Merge requests
!18
Resolve "Bindings: OOP"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Bindings: OOP"
19-bindings-oop
into
main
Overview
0
Commits
5
Pipelines
4
Changes
48
Merged
v-lafeychine
requested to merge
19-bindings-oop
into
main
3 years ago
Overview
0
Commits
5
Pipelines
4
Changes
48
Expand
Closes
#19 (closed)
Edited
3 years ago
by
v-lafeychine
👍
0
👎
0
Merge request reports
Compare
main
version 2
6bf34693
3 years ago
version 1
6996069b
3 years ago
main (base)
and
latest version
latest version
d5c6c743
5 commits,
3 years ago
version 2
6bf34693
4 commits,
3 years ago
version 1
6996069b
2 commits,
3 years ago
48 files
+
639
−
281
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
48
Search (e.g. *.vue) (Ctrl+P)
src/main/scala/bindings/Window/Window.scala deleted
100644 → 0
+
0
−
16
Options
package
SFML.Window
import
scalanative.unsigned.UnsignedRichInt
import
SFML.Config.
*
object
Window
:
type
sfContextSettings
enum
sfWindowStyle
(
val
value
:
sfUint32
)
:
case
sfNone
extends
sfWindowStyle
(
0
.toUInt
)
case
sfTitlebar
extends
sfWindowStyle
((
1
<<
0
)
.toUInt
)
case
sfResize
extends
sfWindowStyle
((
1
<<
1
)
.toUInt
)
case
sfClose
extends
sfWindowStyle
((
1
<<
2
)
.toUInt
)
case
sfFullscreen
extends
sfWindowStyle
((
1
<<
3
)
.toUInt
)
case
sfDefaultStyle
extends
sfWindowStyle
((
sfTitlebar.value
|
sfResize.value
|
sfClose.value
)
.toUInt
)
Loading