This commit is contained in:
parent
c18181c064
commit
6f51f441e3
@ -9,4 +9,3 @@ const (
|
|||||||
TabSize = 4
|
TabSize = 4
|
||||||
QuitTimes = 3
|
QuitTimes = 3
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -16,4 +16,3 @@ func NewPoint(x, y int) *Point {
|
|||||||
func (p *Point) Clone() *Point {
|
func (p *Point) Clone() *Point {
|
||||||
return &Point{p.X, p.Y}
|
return &Point{p.X, p.Y}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,9 +32,9 @@ const (
|
|||||||
// Color sequences
|
// Color sequences
|
||||||
const (
|
const (
|
||||||
DefaultFGColor = EscPrefix + "39m"
|
DefaultFGColor = EscPrefix + "39m"
|
||||||
FGRed = EscPrefix + "31m"
|
FGRed = EscPrefix + "31m"
|
||||||
InvertColor = EscPrefix + "7m"
|
InvertColor = EscPrefix + "7m"
|
||||||
ResetColor = EscPrefix + "m"
|
ResetColor = EscPrefix + "m"
|
||||||
)
|
)
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
@ -21,4 +21,3 @@ func ReadKey() (rune, int) {
|
|||||||
func Write(s string) {
|
func Write(s string) {
|
||||||
fmt.Print(s)
|
fmt.Print(s)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user